-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathreset-pwd.html
More file actions
106 lines (103 loc) · 5.45 KB
/
Copy pathreset-pwd.html
File metadata and controls
106 lines (103 loc) · 5.45 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
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
<!doctype html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="shortcut icon" th:href="@{/img/favicon.ico}"/>
<link rel="stylesheet" type="text/css" th:href="@{/css/bootstrap.min.css}"/>
<link rel="stylesheet" type="text/css" th:href="@{/css/global.css}"/>
<link rel="stylesheet" type="text/css" th:href="@{/css/login.css}"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<title>Echo - 重置密码</title>
</head>
<body>
<div class="nk-container">
<!-- 头部 -->
<header class="bg-dark sticky-top" th:replace="index::header"></header>
<!-- 内容 -->
<div class="main">
<div class="container pl-5 pr-5 pt-3 pb-3 mt-3 mb-3">
<h3 class="text-center text-info border-bottom pb-3">重置密码</h3>
<form class="mt-5" id="resetPwdForm">
<div class="form-group row">
<label for="username" class="col-sm-2 col-form-label text-right">账号或邮箱:</label>
<div class="col-sm-10">
<input type="text" id="username"
th:class="|form-control ${usernameMsg!=null ? 'is-invalid' : ''}|"
th:value="${user!=null ? user.username : ''}"
name="username" placeholder="请输入您的账号或绑定的邮箱!" required>
<!--错误提示消息, 当 上面的 input class = is-invalid 时显示-->
<div class="invalid-feedback">
请输入请输入您的账号或绑定的邮箱
</div>
</div>
</div>
<div class="form-group row mt-4">
<label for="password" class="col-sm-2 col-form-label text-right">新密码:</label>
<div class="col-sm-10">
<input type="password" id="password"
th:class="|form-control ${passwordMsg!=null ? 'is-invalid' : ''}|"
th:value="${user!=null ? user.password : ''}"
name="password" placeholder="请输入新密码!" required>
<!--错误提示消息-->
<div class="invalid-feedback">
请输入新密码
</div>
</div>
</div>
<div class="form-group row mt-4">
<label for="confirm-password" class="col-sm-2 col-form-label text-right">确认新密码:</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="confirm-password"
th:value="${user!=null ? user.password : ''}"
placeholder="请再次输入新密码!" required>
<div class="invalid-feedback">
请确任两次密码是否匹配
</div>
</div>
</div>
<div class="form-group row mt-4">
<label for="kaptchaCode" class="col-sm-2 col-form-label text-right">验证码:</label>
<div class="col-sm-6">
<input type="text" th:class="|form-control ${codeMsg != null ? 'is-invalid' : ''}|"
id="kaptchaCode" name="kaptchaCode" placeholder="请输入验证码!">
<div class="invalid-feedback">
请输入图片验证码
</div>
</div>
<div class="col-sm-4">
<a href="javascript:refresh_kaptcha();" class="font-size-12 align-bottom">
<img th:src="@{/kaptcha}" id = "kaptcha" style="width:100px;height:40px;" class="mr-2"/>
</a>
</div>
</div>
<div class="form-group row mt-4">
<label for="emailVerifyCode" class="col-sm-2 col-form-label text-right">邮箱验证码:</label>
<div class="col-sm-6">
<input type="text" class="form-control" id="emailVerifyCode" name="emailVerifyCode" placeholder="请输入邮箱验证码!">
<div class="invalid-feedback">
请输入邮箱验证码
</div>
</div>
<div class="col-sm-4">
<a id="hideDiv" href="javascript:sendEmailCodeForResetPwd();" class="btn btn-info form-control">获取邮箱验证码</a>
</div>
</div>
<div class="form-group row mt-4">
<div class="col-sm-2"></div>
<div class="col-sm-10 text-center">
<button type="button" id="resetPwd" class="btn btn-info text-white form-control">重置密码</button>
</div>
</div>
</form>
</div>
</div>
<!-- 尾部 -->
<footer class="bg-dark" th:replace="index::footer"></footer>
</div>
<script th:src="@{/js/jquery-3.1.0.min.js}"></script>
<script th:src="@{/js/popper.min.js}"></script>
<script th:src="@{/js/bootstrap.min.js}"></script>
<script th:src="@{/js/reset-pwd.js}"></script>
</body>
</html>