-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-bootstrap.html
48 lines (40 loc) · 1.13 KB
/
01-bootstrap.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<link rel="stylesheet" href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.css">
<style media="screen">
.btn.btn-primary {
background-color: #a20;
border-color: #a20;
}
.container-small {
max-width: 500px;
}
</style>
<div class="container container-small">
<h1>登录</h1>
<form action="index.html" method="post">
<div class="alert alert-success">
登陆成功~ 正在跳转...
</div>
<div class="form-group">
<label for="">用户名</label>
<input type="text" class="form-control" name="" value="">
</div>
<div class="form-group">
<label for="">密码</label>
<input type="password" class="form-control" name="" value="">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-block" name="button">登录</button>
</div>
</form>
</div>
</body>
</html>