-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.html
167 lines (142 loc) · 6.25 KB
/
forgot-password.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>忘记密码</title>
<!-- Custom fonts for this template-->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- Custom styles for this template-->
<link href="../public/css/sb-admin-2.min.css" rel="stylesheet">
</head>
<body class="bg-gradient-primary">
<div class="container">
<!-- Outer Row -->
<div class="row justify-content-center">
<div class="col-xl-12 col-lg-12 col-md-12">
<div class="card o-hidden border-0 shadow-lg my-5 ">
<div class="card-body p-0">
<!-- Nested Row within Card Body -->
<div class="row">
<div class="col-lg-5 d-none d-lg-block bg-password-image"></div>
<div class="col-lg-7">
<div class="p-5">
<div class="text-center">
<h1 class="h4 text-gray-900 mb-2">忘记了密码?</h1>
<p class="mb-4">只需在下面输入您的电子邮件地址,我们就会向您发送验证码来重置密码!</p>
</div>
<form class="user">
<div class="form-group">
<input type="email" class="form-control form-control-user"
id="email" aria-describedby="emailHelp"
placeholder="请输入邮箱...">
</div>
<div class="form-group row">
<div class="col-sm-6 mb-3 mb-sm-0">
<input type="password" class="form-control form-control-user"
id="repassword" placeholder="请输入密码" name="password">
</div>
<div class="col-sm-3">
<input type="text" class="form-control form-control-user" id="revecode"
placeholder="输入验证码" name="vecode">
</div>
<div class="col-sm-3">
<div class="btn btn-primary btn-user btn-block" id="getvecode">获取验证码</div>
</div>
</div>
<a id="repsd" class="btn btn-primary btn-user btn-block">
重置密码
</a>
</form>
<hr>
<div class="text-center">
<a class="small" href="/register">创建一个新账户!</a>
</div>
<div class="text-center">
<a class="small" href="/login">已经有了账户?登录!</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script>
//邮箱格式正则
var regEmailExp = /^[A-Za-z\d]+([-_.][A-Za-z\d]+)*@([A-Za-z\d]+[-.])+[A-Za-z\d]{2,4}$/;
//密码格式正则
var regPsdExp = /^(?!([a-zA-Z]+|\d+)$)[a-zA-Z\d]{6,20}$/;
var regCodeExp = /^\d{6}$/;
$('#getvecode').click(function () {
var revecode = $('#revecode').val();
var email = $('#email').val();
// var url = document.location.origin;
// console.log(email);
if (email.length === 0) {
window.alert('邮箱未填写')
} else {
$.ajax({
url: '/repsd',
type: 'get',
data: {
email: email,
revecode: revecode,
},
success: function (data) {
var err_code = data.err_code;
if (err_code === 0) {
window.alert('修改密码邮件发送成功!');
}
},
error: function (err) {
console.log(err);
}
})
}
});
$('#repsd').click(function () {
var irevecode = $('#revecode').val();
var repsd = $('#repassword').val();
var email = $('#email').val();
if (!regEmailExp.test(email)) {
alert("邮箱格式不正确")
} else if (!regPsdExp.test(repsd)) {
alert("密码至少六位(包含数字与字母)");
} else if (!regCodeExp.test(irevecode)) {
alert("验证码输入错误");
} else {
$.ajax({
url: '/repsd',
type: 'post',
data: {
irevecode: irevecode,
email: email,
repsd: repsd,
},
success: function (data) {
var err_code = data.err_code;
if (err_code === 1) {
window.alert('验证码不正确!');
} else if (err_code === 2) {
window.alert('你的邮箱未注册')
} else if (err_code === 0) {
window.alert('密码修改成功!');
window.location.href = '/login'
}
},
error: function (err) {
console.log(err);
}
})
}
})
</script>
</body>
</html>