-
Notifications
You must be signed in to change notification settings - Fork 0
/
changePassword.html
61 lines (61 loc) · 2.28 KB
/
changePassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/login.css">
<link rel="stylesheet" href="css/header.css">
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/style.js"></script>
<script src="js/login.js"></script>
<style>
::-webkit-input-placeholder {
color: #ccc;
font-size: 32px;
letter-spacing:4px;
}
</style>
</head>
<body>
<!--header忘记密码-->
<div id="nav-header">
<div class="header-content">
<div class="prev fl"><a href="password.html"><img src="images/zcPersonal/2x/[email protected]" alt=""></a></div>
<div class="font fl" ><span>确认密码修改</span></div>
</div>
</div>
<!--内容-->
<div class="Container pwContainer">
<div class="Container-content">
<form>
<div class="phone" id="insertNum">
<img src="images/password/2x/[email protected]" alt="">
<input type="password" placeholder="输入密码" class="pass" id="pass">
</div>
<div class="phone" id="insertCode">
<img src="images/password/2x/[email protected]" alt="">
<input type="password" placeholder="再次输入密码" class="confirmPass" id="confirmPass">
</div>
</form>
<a href="login.html"><input type="button" class="btn" id="completeChange" value="修改完成"></a>
</div>
</div>
<!-- 表单验证 -->
<div class="userPass">
<span>密码不能为空</span>
</div>
<div class="confirmUserpass">
<span>确认密码不能为空</span>
</div>
<div class="noSame">
<span>输入的密码不一致</span>
</div>
<div class="less">
<span>密码长度不能少于六个字符</span>
</div>
<div class="exceed">
<span>密码长度不能超过十六个字符</span>
</div>
</body>
</html>