123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html>
- <html lang="zh-cmn-Hans">
- <head>
- <meta charset="UTF-8">
- <title>生保系统故障分析及辅助维修决策软件</title>
- <meta name="renderer" content="webkit|ie-comp|ie-stand">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8">
- <meta http-equiv="Cache-Control" content="no-siteapp" />
- <link rel="Shortcut Icon" href="./images/icon1.png" type="image/x-icon" />
- <link href="other/css/bootstrap.min.css" rel="stylesheet">
- <link rel="stylesheet" href="admin/lib/layui/css/layui.css">
- <link rel="stylesheet" href="admin/css/font.css">
- <link href="other/css/style.css" rel="stylesheet">
- <script src="other/js/jquery-1.10.1.min.js"></script>
- <script src="other/js/bootstrap.min.js"></script>
- <script src="admin/lib/layui/layui.js" charset="utf-8"></script>
- <script src="other/js/functions.js"></script>
- <script src="admin/js/login.js"></script>
- <!--[if lt IE 9]>
- <script src="other/js/html5shiv.js"></script>
- <script src="other/js/respond.js"></script>
- <![endif]-->
- </head>
- <body >
- <div class="container">
- <div class="row navTitle hot">
- <h2 class="pull-left"><img src="./admin/images/icon1.png" alt="" style="width: 50px;height: 45px;">生保系统故障分析及辅助维修决策软件</h2>
- <div class="nav">
- <a href="admin/index.html" class="pull-right">搜索首页</a>
- </div>
- </div>
- <div class="col-md-offset-4 col-md-4 login login-box">
- <form action="" >
- <div class="input-group">
- <span class="input-group-addon layui-icon"></span>
- <input id="username" type="text" class="form-control" placeholder="用户名(身份证号)" aria-describedby="basic-addon1">
- </div>
- <div class="input-group">
- <span class="input-group-addon layui-icon"></span>
- <input id="password" type="password" class="form-control" placeholder="密码" aria-describedby="basic-addon1">
- </div>
- <div class="remember">
- <!-- <input id="issave" checked="" type="checkbox"> -->
- <!-- <label for="issave">下次自动登录</label> -->
- <!-- <a class="pull-right" href="">忘记密码</a> -->
- </div>
- <input id="login" class="col-md-12" type="submit" value="登录">
- </form>
- </div>
- </div>
- </body>
- <style type="text/css">
- html,body{margin:0;padding:0;width:100%;height:85%;}
- body{background:url("admin/images/login.png");background-size:cover;background-repeat:no-repeat;background-position:center;}
- login-box{position:fixed;width:200px;height:200px;background:rgba(0,0,0,0.5);left:50%;top:50%;margin-left:-100px;margin-top:-100px;}
- </style>
- </html>
|