| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
- <title>登录页面 - 光年(Light Year Admin)后台管理系统模板</title>
- <link rel="icon" href="favicon.ico" type="image/ico">
- <meta name="keywords" content="LightYear,光年,后台模板,后台管理系统,光年HTML模板">
- <meta name="description" content="LightYear是一个基于Bootstrap v3.3.7的后台管理系统的HTML模板。">
- <meta name="author" content="yinqi">
- <link href="css/bootstrap.min.css" rel="stylesheet">
- <link href="css/materialdesignicons.min.css" rel="stylesheet">
- <link href="css/style.min.css" rel="stylesheet">
- <style>
- body {
- background-color: #fff;
- }
- .lyear-login-box {
- position: relative;
- overflow-x: hidden;
- width: 100%;
- height: 100%;
- -webkit-transition: 0.5s;
- -o-transition: 0.5s;
- transition: 0.5s;
- }
- .lyear-login-left {
- width: 50%;
- top: 0;
- left: 0;
- bottom: 0;
- position: fixed;
- height: 100%;
- z-index: 555;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- }
- .lyear-overlay {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 10;
- background: rgba(0, 0, 0, 0.5);
- }
- .lyear-logo {
- margin-bottom: 50px;
- }
- .lyear-featured {
- z-index: 12;
- position: absolute;
- bottom: 0;
- padding: 30px;
- width: 100%;
- }
- .lyear-featured h4 {
- color: #fff;
- line-height: 32px;
- }
- .lyear-featured h4 small {
- color: #fff;
- display: block;
- text-align: right;
- margin-top: 15px;
- }
- .lyear-login-right {
- margin-left: 50%;
- position: relative;
- z-index: 999;
- padding: 100px;
- background-color: #fff;
- }
- @media screen and (max-width: 1024px) {
- .lyear-login-right {
- padding: 50px;
- }
- }
- @media screen and (max-width: 820px) {
- .lyear-login-left {
- width: 100%;
- position: relative;
- z-index: 999;
- height: 300px;
- }
- .lyear-login-right {
- margin-left: 0;
- }
- }
- @media screen and (max-width: 480px) {
- .lyear-login-right {
- padding: 50px;
- }
- }
- @media screen and (max-width: 320px) {
- .lyear-login-right {
- padding: 30px;
- }
- }
- </style>
- </head>
-
- <body>
- <div class="lyear-login-box">
- <div class="lyear-login-left" style="background-image: url(images/login-bg-4.jpg)">
- <div class="lyear-overlay"></div>
- <div class="lyear-featured">
- <h4>愿你有好运气,如果没有,愿你在不幸中学会慈悲;愿你被很多人爱,如果没有,愿你在寂寞中学会宽容。<small> - 刘瑜《愿你慢慢长大》</small></h4>
- </div>
- </div>
- <div class="lyear-login-right">
-
- <div class="lyear-logo text-center">
- <a href="#!"><img src="images/logo-sidebar.png" alt="logo" /></a>
- </div>
- <form action="#!" method="post">
- <div class="form-group">
- <label for="username">用户名</label>
- <input type="text" class="form-control" id="username" placeholder="请输入您的用户名">
- </div>
- <div class="form-group">
- <label for="password">密码</label>
- <input type="password" class="form-control" id="password" placeholder="请输入您的密码">
- </div>
- <div class="form-group">
- <label for="captcha">验证码</label>
- <div class="row">
- <div class="col-xs-7">
- <input type="text" name="captcha" id="captcha" class="form-control" placeholder="验证码">
- </div>
- <div class="col-xs-5">
- <img src="images/captcha.png" class="pull-right" id="captcha" style="cursor: pointer;" onclick="this.src=this.src+'?d='+Math.random();" title="点击刷新" alt="captcha">
- </div>
- </div>
- </div>
-
- <div class="form-group">
- <label class="lyear-checkbox checkbox-primary m-t-10">
- <input type="checkbox" checked=""><span>5天内自动登录</span>
- </label>
- </div>
- <div class="form-group">
- <button class="btn btn-block btn-primary" type="submit">立即登录</button>
- </div>
- <footer class="text-center">
- <p class="m-b-0">Copyright © 2020 <a href="http://lyear.itshubao.com">IT书包</a>. All right reserved</p>
- </footer>
- </form>
-
- </div>
- </div>
- <script type="text/javascript" src="js/jquery.min.js"></script>
- <script type="text/javascript" src="js/bootstrap.min.js"></script>
- <script type="text/javascript">;</script>
- </body>
- </html>
|