Login.cshtml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>SCADA登录页</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <meta http-equiv="Access-Control-Allow-Origin" content="*">
  8. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  10. <meta name="apple-mobile-web-app-capable" content="yes">
  11. <meta name="format-detection" content="telephone=no">
  12. <link rel="stylesheet" href="/lib/layui-v2.6.3/css/layui.css" media="all">
  13. <!--[if lt IE 9]>
  14. <script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
  15. <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
  16. <![endif]-->
  17. <style>
  18. body {background-image:url("../images/bg.jpg");height:100%;width:100%;background-size: cover;
  19. background-repeat: no-repeat;
  20. background-attachment: fixed;}
  21. #container{height:100%;width:100%;}
  22. input:-webkit-autofill {-webkit-box-shadow:inset 0 0 0 1000px #fff;background-color:transparent;}
  23. .admin-login-background {width:300px;height:300px;position:absolute;left:50%;top:40%;margin-left:-150px;margin-top:-100px;}
  24. .admin-header {text-align:center;margin-bottom:20px;color:#ffffff;font-weight:bold;font-size:40px}
  25. .admin-input {border-top-style:none;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;height:50px;width:300px;padding-bottom:0px;}
  26. .admin-input::-webkit-input-placeholder {color:#a78369}
  27. .layui-icon-username {color:#a78369 !important;}
  28. .layui-icon-username:hover {color:#9dadce !important;}
  29. .layui-icon-password {color:#a78369 !important;}
  30. .layui-icon-password:hover {color:#9dadce !important;}
  31. .admin-input-username {border-top-style:solid;border-radius:10px 10px 0 0;}
  32. .admin-input-verify {border-radius:0 0 10px 10px;}
  33. .admin-button {margin-top:20px;font-weight:bold;font-size:18px;width:300px;height:50px;border-radius:5px;background-color:#a78369;border:1px solid #d8b29f}
  34. .admin-icon {margin-left:260px;margin-top:10px;font-size:30px;}
  35. i {position:absolute;}
  36. .admin-captcha {position:absolute;margin-left:205px;margin-top:-40px;}
  37. </style>
  38. </head>
  39. <body>
  40. @RenderBody()
  41. </body>
  42. </html>