| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title></title>
- <meta name="description" content="">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="robots" content="all,follow">
- <!-- Bootstrap CSS-->
- <link rel="stylesheet" href="__VENDOR__/bootstrap/css/bootstrap.min.css">
- <!-- Font Awesome CSS-->
- <link rel="stylesheet" href="__VENDOR__/font-awesome/css/font-awesome.min.css">
- <!-- Fontastic Custom icon font-->
- <link rel="stylesheet" href="__CSS__/fontastic.css">
- <!-- Google fonts - Poppins -->
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,700">
- <!-- theme stylesheet-->
- <link rel="stylesheet" href="__CSS__/style.default.css" id="theme-stylesheet">
- <!-- Custom stylesheet - for your changes-->
- <link rel="stylesheet" href="__CSS__/custom.css">
- <!-- Favicon-->
- <link rel="shortcut icon" href="__IMG__/favicon.ico">
- <!-- Tweaks for older IEs--><!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
- </head>
- <body>
- <div class="page login-page">
- <div class="container d-flex align-items-center">
- <div class="form-holder has-shadow">
- <div class="row">
- <!-- Logo & Information Panel-->
- <div class="col-lg-6">
- <div class="info d-flex align-items-center">
- <div class="content">
- <div class="logo">
- <h1>后台管理系统</h1>
- </div>
- <!--<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>-->
- </div>
- </div>
- </div>
- <!-- Form Panel -->
- <div class="col-lg-6 bg-white">
- <div class="form d-flex align-items-center">
- <div class="content">
- <form method="post" class="form-validate" >
- <div class="form-group">
- <input id="login-username" type="text" name="name" required data-msg="请输入您的用户名" class="input-material">
- <label for="login-username" class="label-material">用户名</label>
- </div>
- <div class="form-group">
- <input id="login-password" type="password" name="password" required data-msg="请输入您的密码" class="input-material">
- <label for="login-password" class="label-material">密码</label>
- </div>
- <div>
- <small style="color: #f20000" id="errorMsg">{$errorMsg}</small>
- </div>
- <input style="margin-top: 30px;" type="submit" class="btn btn-primary" value="登陆"/>
- <!-- This should be submit button but I replaced it with <a> for demo purposes-->
- </form>
- <!--<a href="#" class="forgot-pass">Forgot Password?</a><br><small>Do not have an account? </small><a href="register.html" class="signup">Signup</a>-->
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="copyrights text-center">
- <!--<p>Design by <a href="#" class="external">Bootstrapious</a>
- <!– Please do not remove the backlink to us unless you support further theme's development at https://bootstrapious.com/donate. It is part of the license conditions. Thank you for understanding :)–>
- </p>-->
- </div>
- </div>
- <!-- JavaScript files-->
- <script src="__VENDOR__/jquery/jquery.min.js"></script>
- <script src="__VENDOR__/popper.js/umd/popper.min.js"> </script>
- <script src="__VENDOR__/bootstrap/js/bootstrap.min.js"></script>
- <script src="__VENDOR__/jquery.cookie/jquery.cookie.js"> </script>
- <script src="__VENDOR__/chart.js/Chart.min.js"></script>
- <script src="__VENDOR__/jquery-validation/jquery.validate.min.js"></script>
- <!-- Main File-->
- <script src="__JS__/front.js"></script>
- </body>
- </html>
|