-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogoin.html
70 lines (64 loc) · 2.09 KB
/
logoin.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
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 模板</title>
<link rel="stylesheet" href="bs/css/bootstrap.css">
<script src="jquery-3.2.1.min.js"></script><!--版本低可能不支持bootstrap -->
<script src="bs/js/bootstrap.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<style>
.back{
height: 150px;
}
.register{
margin-top: 10px;
}
img{
display: block;
margin-top:80px;
}
</style>
<script>
$(function(){
$(' img').addClass('img-responsive center-block');
})
</script>
<body>
<div class="container">
<form action="" class="form-horizontal" role="form">
<fieldset > <!-- disable禁用 -->
<legend> 用户登录</legend>
<div class="back" >
<img src="images/registerlogo.png" alt="">
</div >
<div class="form-group">
<div class=" col-xs-offset-1 col-xs-10">
<input type="email" class="form-control" placeholder="请输入你的用户名或email">
</div>
</div>
<div class="form-group">
<div class=" col-xs-offset-1 col-xs-10">
<input type="text" class="form-control" placeholder="请输入你的密码">
</div>
</div>
<div class="form-group">
<div class="col-xs-offset-1 col-xs-10" >
<div class="checkbox">
<label ><input type="checkbox">记住密码</label>
</div>
</div>
</div>
<div class="form-group">
<div class=" col-xs-12" >
<button type="submit" class="btn btn-primary btn-block">登录</button>
</div>
<div class=" col-xs-12" >
<a href="register.html"class="btn btn-default btn-block register">注册</a>
</div>
</div>
</fieldset>
</form>
</div>
</body>
</html>