-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.html
53 lines (50 loc) · 2.57 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<title>工作台</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="./public/css/vendor/bootstrap/dist/bootstrap.css">
<link rel="stylesheet" href="./public/css/vendor/Animate.css">
<link rel="stylesheet" href="./public/css/basic.css">
<link rel="stylesheet" href="./public/css/vendor/font_awesome/css/font-awesome.css">
<!--[if lt IE 9]>
<script src="./public/js/vendor/html5shiv.min.js"></script>
<script src="./public/js/vendor/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<form class="form-signin" method="get" action="">
<div class="logo animated bounceIn"><img src="./logo.png"/></div>
<h3>欢迎使用BG-UI</h3>
<div class="form-group">
<!--[if lte IE 9]><label>用户名</label><![endif]-->
<input type="text" class="form-control" placeholder="用户名" required="required" autofocus="autofocus">
</div>
<div class="form-group">
<!--[if lte IE 9]><label>密码</label><![endif]-->
<input type="password" class="form-control" placeholder="密码" required="required">
</div>
<div class="form-group" style="position:relative;">
<!--[if lte IE 9]><label>验证码</label><![endif]-->
<!--[if lte IE 9]><style type="text/css">.J_verify_code{top:33px !important;}</style><![endif]-->
<input type="password" class="form-control" placeholder="验证码" required="required">
<div class="J_verify_code" style="cursor:pointer;position:absolute;top:8px;right:6px;">
<img src="./public/images/code.png"/>
</div>
</div>
<button class="btn btn-lg btn-primary btn-block subBtn" type="submit">登录</button>
<div class="help"><i class="fa fa-lightbulb-o"></i> 此为静态演示,可以直接<a href="./tpl/"><b>进入后台演示</b></a></div>
<div class="copyright"><i class="fa fa-copyright"></i><a href="https://github.com/liyu365">liyu</a></div>
</form>
</div>
<script src="./public/js/vendor/jquery.min.js"></script>
<script src="./public/js/vendor/bootstrap/dist/bootstrap.js"></script>
<script src="./public/js/vendor/ie10-viewport-bug-workaround.js"></script>
</body>
</html>