152 lines
No EOL
4.8 KiB
Text
152 lines
No EOL
4.8 KiB
Text
@using Kreta.Framework
|
|
|
|
@{
|
|
ViewBag.Title = LoginResource.Login;
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<title>@ViewBag.Title</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Roboto+Condensed:wght@300;400;700&display=swap" rel="stylesheet">
|
|
<link rel="icon" href="~/favicon.ico" type="image/x-icon" />
|
|
@Styles.Render(Request.Browser.IsMobileDevice ? "~/Content/kretaMobileCss" : "~/Content/kretaCss")
|
|
|
|
@Html.Raw(Kreta.Core.Analytics.Client.Factory.GetInstance())
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
font-family: "Open Sans";
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #445261;
|
|
background: #406a7c; /* For browsers that do not support gradients */
|
|
background: -webkit-radial-gradient(circle, #518094, #406a7c); /* Safari */
|
|
background: -o-radial-gradient(circle, #518094, #406a7c); /* Opera 11.6 to 12.0 */
|
|
background: -moz-radial-gradient(circle, #518094, #406a7c); /* Firefox 3.6 to 15 */
|
|
background: radial-gradient(circle, #518094, #406a7c); /* Standard syntax */
|
|
}
|
|
|
|
#main {
|
|
height: 100%;
|
|
top: 0;
|
|
position: absolute;
|
|
width: 100%;
|
|
background-image: url('./Content/content/images/cactus.png');
|
|
background-repeat: no-repeat;
|
|
background-position: bottom right 30px;
|
|
}
|
|
|
|
#main h2 {
|
|
color: white;
|
|
font-weight: 400;
|
|
font-size: 2em;
|
|
}
|
|
|
|
#main .login_main {
|
|
text-align: center;
|
|
height: auto;
|
|
padding-top: 10%;
|
|
}
|
|
|
|
#main .login_logo {
|
|
margin: 0 auto;
|
|
margin-top: 10%;
|
|
width: 400px;
|
|
display: block;
|
|
background-image: url('./App_Themes/Skin_Kreta_Gfx/content/images/kreta_feher_login.png');
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
height: 100px;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
#main .login_container {
|
|
width: 40%;
|
|
margin: 0 auto;
|
|
display: block;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#main .login_problems {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
display: block;
|
|
background-color: transparent;
|
|
line-height: 30px;
|
|
color: white;
|
|
}
|
|
|
|
#main .login_header {
|
|
background-color: transparent;
|
|
text-align: center;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
#main .login_content {
|
|
text-align: center;
|
|
padding: 20px;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
overflow-y: auto;
|
|
color: white;
|
|
font-size: 18px;
|
|
font-weight: 300;
|
|
}
|
|
|
|
#main .login_foot {
|
|
padding: 20px 0;
|
|
margin: 0 auto;
|
|
margin-top: 200px;
|
|
width: 400px;
|
|
display: block;
|
|
font-size: 12px;
|
|
color: #bac8d5;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body cz-shortcut-listen="true">
|
|
<div id="main">
|
|
<div class="login_logo">
|
|
</div>
|
|
|
|
<div class="login_container">
|
|
<div class="login_header">
|
|
<h2></h2>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="login_problems">
|
|
<div class="login_content">
|
|
A KRÉTA rendszerbe kizárólag adminisztrátori, osztályfőnöki és Lázár Ervin Program kezelői jogosultsággal lehet belépni!
|
|
</div>
|
|
</div>
|
|
|
|
<div class="login_foot">
|
|
<div class="login_infoVersion">
|
|
<span id="lblVersion" class="szovegVersion">@Html.Raw(ViewBag.Version)</span>
|
|
</div>
|
|
<div class="login_Infotext">
|
|
@LoginResource.TamogatottBongeszok
|
|
<br /> @LoginResource.BongeszoList
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |