| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Amaze UI Admin index Examples</title>
- <meta name="description" content="这是一个 index 页面">
- <meta name="keywords" content="index">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="renderer" content="webkit">
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- <link rel="icon" type="image/png" href="assets/i/favicon.png">
- <link rel="apple-touch-icon-precomposed" href="assets/i/app-icon72x72@2x.png">
- <meta name="apple-mobile-web-app-title" content="Amaze UI" />
- <link rel="stylesheet" href="assets/css/amazeui.min.css" />
- <link rel="stylesheet" href="assets/css/admin.css">
- <link rel="stylesheet" href="assets/css/app.css?version=1.0">
- </head>
- <style>
- .bg-login-box {
- background-size: 100%;
- height: 100%;
- background-image: url("assets/img/self/bg.jpg");
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .login-box {
- background-color: #F3FCFD;
- width: 450px;
- height: 400px;
- border-radius: 30px;
- margin-bottom: 8%;
- }
- .color-title-login {
- color: #007AFF;
- }
- .login-title-box {
- margin-top: 30px;
- text-align: center;
- color: #333333;
- font-size: 28px;
- }
- .login-input-class-new {
- width: 320px;
- border: none;
- background: transparent;
- border-bottom: 1px solid #d7d7d7;
- font-size: 16px;
- padding-bottom: 10px;
- }
- .login-input-verCode {
- border: none;
- background: transparent;
- border-bottom: 1px solid #d7d7d7;
- font-size: 15px;
- padding-bottom: 5px;
- }
- .login-btn-class {
- background-color: #00C7F7;
- width: 320px;
- color: #fff;
- border-radius: 5px;
- height: 40px;
- border: none;
- }
- input:focus {
- outline: 0;
- border-width: none;
- }
- input::-webkit-input-placeholder{
- color:#d6d6dd;
- }
- input::-moz-placeholder{ /* Mozilla Firefox 19+ */
- color:#d6d6dd;
- }
- input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
- color:#d6d6dd;
- }
- input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
- color:#d6d6dd;
- }
- </style>
- <body data-type="login">
- <div class="bg-login-box">
- <div class="login-box">
- <div class="login-title-box"><span class="color-title-login">西咸新区</span>绿色建筑能耗监测平台</div>
- <form id="loginform" autocomplete="off">
- <div class="margin-top-50 am-text-center">
- <input type="text" placeholder="Username" class="login-input-class-new" name="account" autocomplete="off">
- </div>
- <div class="margin-top-10 am-text-center">
- <input type="password" placeholder="Password" class="login-input-class-new" name="password" autocomplete="off">
- </div>
- <div class="am-form-icon margin-top-10 display-flex-start justify-center verCode-box">
- <div class="cu_code_input" style="width:37%">
- <input type="text" class="login-input-verCode" name="vercode" autocomplete="off" placeholder="验证码">
- </div>
- <div class="cu_code_img display-flex-start">
- <img src="vercode.php" class="vercode-img cursor-hand margin-right-5" height="30" alt="刷新换一张" id="vercodeimg"/>
- <div class="cu_code_tip display-flex-start items-center cursor-hand" id="vercode_refresh" >
- 刷新<i class="am-icon-refresh cursor-hand" style="margin-left: 5px;margin-top: 0;position: static;"></i>
- </div>
- </div>
- </div>
- <div class="margin-top-10 am-text-center">
- <button type="button" class="login-btn-class margin-top-20 font-size-15" id="btn_login">登录</button>
- </div>
- </form>
- <div class="am-text-center font-size-15 margin-top-50"><a href="https://beian.miit.gov.cn" class="color-blue" target='_blank'>陕ICP备2022003083号-1</a></div>
- </div>
- </div>
- <script src="assets/js/jquery-2.1.1.js"></script>
- <script src="assets/js/amazeui.min.js"></script>
- <script src="assets/js/app.js"></script>
- <script>
- $('#loginBtn').click(function(){
- window.location.href = './index.html'
- })
- </script>
- </body>
- </html>
|