-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchpwd.html
executable file
·32 lines (27 loc) · 1.39 KB
/
chpwd.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
<form method="post" action="./doc/data/ajaxDone_200_dialog.html" class="required-validate">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">修改密码</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="inputPassword1">旧密码</label>
<input type="password" name="oldPassword" class="form-control" id="inputPassword1" placeholder="Password" required="required" minlength="6" maxlength="20">
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<label for="inputPassword2">新密码</label>
<input type="password" name="newPassword" class="form-control" id="inputPassword2" placeholder="Password" required="required" minlength="6" maxlength="20">
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<label for="inputPassword3">重复输入新密码</label>
<input type="password" name="rnewPassword" class="form-control" id="inputPassword3" placeholder="Password" required="required" equalTo="#inputPassword2">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
<button type="submit" class="btn btn-primary">提交</button>
</div>
</form>