-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdatePwd.html
56 lines (56 loc) · 1.71 KB
/
updatePwd.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/amazeui.min.css">
<link rel="stylesheet" href="css/admin.css">
<link rel="stylesheet" href="css/app.css">
<style>
.admin-main{
padding-top: 0px;
}
</style>
</head>
<body>
<div class="am-cf admin-main">
<!-- content start -->
<div class="admin-content">
<div class="admin-content-body">
<div class="am-g">
<form class="am-form am-form-horizontal"
method="post"
style="padding-top:30px;" action="updataPwd.php">
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
新密码 </label>
<div class="" style="position: absolute;right: 180px;top:38px;">
<input type="password" id="doc-vld-pwd-1" required placeholder="请输入新密码"
name="password">
</div>
</div>
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
重复密码</label>
<div class="" style="position: absolute;right: 180px;top:88px;">
<input type="password" id="doc-vld-pwd-2" required placeholder="请输入重复密码"
name="password2" data-equal-to="#doc-vld-pwd-1" required>
</div>
</div>
<div class="am-form-group">
<div class="" style="position: absolute;right: 300px;top:168px;">
<input type="submit" class="am-btn am-btn-success" value="修改密码" />
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript"
src="assets/js/libs/jquery-1.10.2.min.js">
</script>
<script type="text/javascript" src="myplugs/js/plugs.js">
</script>
</body>
</html>