forked from HelloWorld521/Java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforgetPassword.html
More file actions
58 lines (57 loc) · 1.52 KB
/
forgetPassword.html
File metadata and controls
58 lines (57 loc) · 1.52 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>找回密码</title>
<style type="text/css">
body{
font-family: 'Lucida Grande','Trebuchet MS','Hiragino Sans GB','Segoe UI Light','Segoe UI','Microsoft Jhenghei','微软雅黑',sans-serif;
color: #666666;
}
.title{
font-size: 60px;
text-align: center;
margin-top: 150px;
}
.conter{
text-align:center;
}
.man{
margin-left: 80%;
font-size: 10px
}
.form{
position:relative;
}
.login{
margin-top: 10px;
padding: 2px 15px;
font-size: 20px;
color:rgb(95,100,233);
-webkit-transition: background 250ms ease-in, color 250ms ease-in;
border-radius: 6px;
text-decoration: none;
}
.login:hover{
color: #fff;
background:#BBD631;
}
.register{
font-size:15px;
color:rgb(95,100,200);
}
</style>
</head>
<body background="images/reset.jpg">
<div class="center" align="center">
<div class="title">找回密码</div>
<form action="forgetPassword.jsp" method="get" class="form">
<table align="center">
<tr><td>账号:</td><td><input type="text" name="user" size=20 required="required"></td></tr>
<tr><td>电话:</td><td><input type="number" name="number" size=40 required="required"></td></tr>
<tr><td align="center" colspan="3"><input type="submit" value="确定" class="login" required="required"></td></tr>
</table>
</form>
</div>
</body>
</html>