60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
|
|
<!DOCTYPE html>
|
|
<html lang="fa">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
@* <meta name="viewport" content="width=100vw"> *@
|
|
@* <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> *@
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title> گزارشگیر @ViewData["Title"]</title>
|
|
|
|
<link rel="icon" type="image/x-icon" href="~/AssetsClient/images/favicon.ico">
|
|
|
|
<link rel="stylesheet" href="~/AssetsClient/css/bootstrap.rtl.css">
|
|
<link href="~/AssetsClient/css/validation-style.css" rel="stylesheet" />
|
|
<link href="~/AssetsClient/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
|
|
<link href="~/AdminTheme/assets/ionicon/css/ionicons.min.css" rel="stylesheet" />
|
|
|
|
<style>
|
|
.alert-msg, .alert-success-msg {
|
|
bottom: auto;
|
|
top: 15px;
|
|
}
|
|
</style>
|
|
|
|
@RenderSection("Styles", false)
|
|
|
|
@* <style>
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
</style> *@
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div id="container">
|
|
<div id="display1">
|
|
|
|
@RenderBody()
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<partial name="_validationAlert" />
|
|
|
|
<script src="~/AssetsClient/js/jquery-3.7.1.min.js"></script>
|
|
<script src="~/AssetsClient/js/bootstrap.bundle.min.js"></script>
|
|
|
|
@RenderSection("Script", false)
|
|
|
|
|
|
</body>
|
|
</html> |