-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path20291267-何俊尧.html
97 lines (89 loc) · 2.18 KB
/
20291267-何俊尧.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>美团登录</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
body {
background-color: #f5f5f5;
}
.container {
margin-top: 50px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
padding: 40px;
border-radius: 10px;
max-width: 500px;
margin: 0 auto;
}
h2 {
text-align: center;
color: #f0db4f;
margin-bottom: 30px;
font-weight: 600;
}
.form-group {
margin-bottom: 30px;
}
label {
color: #3d3d3d;
font-size: 16px;
font-weight: 500;
margin-bottom: 10px;
display: block;
}
.form-control {
height: 45px;
border-radius: 5px;
border: 1px solid #ccc;
padding: 10px;
font-size: 16px;
color: #3d3d3d;
box-shadow: none;
}
.form-control:focus {
border-color: #f0db4f;
box-shadow: none;
}
.btn-primary {
background-color: #f0db4f;
border-color: #f0db4f;
width: 100%;
height: 45px;
font-size: 16px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
background-color: #e0d04f;
border-color: #e0d04f;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>美团登录</h2>
<form>
<div class="form-group">
<label for="username">用户名:</label>
<input type="text" class="form-control" id="username" placeholder="请输入用户名">
</div>
<div class="form-group">
<label for="password">密码:</label>
<input type="password" class="form-control" id="password" placeholder="请输入密码">
</div>
<button type="submit" class="btn btn-primary">登录</button>
</form>
</div>
</div>
</div>
</body>
</html>