-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
66 lines (64 loc) · 2.57 KB
/
login.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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<meta charset="UTF-8">
<title>登录页面</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<script src="js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<style>
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #303641;
color: #C1C3C6
}
</style>
</head>
<body>
<div class="container">
<form class="form-signin" role="form" action="index.html">
<h3 class="form-signin-heading">Please sign in</h3>
<div class="form-group">
<div class="input-group">
<div class="input-group-addon">
<i class="glyphicon glyphicon-user"></i>
</div>
<input type="text" class="form-control" name="username" id="username" placeholder="Username" autocomplete="off" />
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-addon">
<i class=" glyphicon glyphicon-lock "></i>
</div>
<input type="password" class="form-control" name="password" id="password" placeholder="Password" autocomplete="off" />
</div>
</div>
<label class="checkbox">
<input type="checkbox" value="remember-me">   Remember me
</label>
<button class="btn btn-lg btn-primary btn-block ih_signbtn" type="submit">Sign in</button>
</form>
</div>
<div class="clearfix"></div>
<br><br>
<!--footer-->
<div class="site-footer login-footer">
<div class="container">
<div class="copyright clearfix text-center">
<p><b>Bootflat</b> <a href="getting-started.html">Getting Started</a> • <a href="index.html">Documentation</a> • <a href="https://github.com/Bootflat/Bootflat.UI.Kit.PSD/archive/master.zip">Free PSD</a> • <a href="colors.html">Color Picker</a></p>
<p>Code licensed under <a href="http://opensource.org/licenses/mit-license.html" target="_blank" rel="external nofollow">MIT License</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/" rel="external nofollow">CC BY 3.0</a>.</p>
</div>
</div>
</div>
</body>
<script type="text/javascript">
$(function(){
$(".ih_signbtn").click(function(){
window.location.href="index.html";
})
})
</script>
</html>