-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangepwd.html
22 lines (22 loc) · 945 Bytes
/
changepwd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<form method="post" action="demo/common/ajaxDone.html" class="pageForm required-validate" onsubmit="return validateCallback(this, dialogAjaxDone)">
<div class="formBar">
<ul>
<li><button type="submit" class="buttonActive">提交</button></li>
<li><button type="button" class="button close">关闭</button></li>
</ul>
</div>
<div class="pageFormContent" layoutH="58">
<div class="unit">
<label>旧密码:</label>
<input type="password" name="oldPassword" size="30" minlength="6" maxlength="20" class="required" />
</div>
<div class="unit">
<label>新密码:</label>
<input type="password" id="cp_newPassword" name="newPassword" size="30" minlength="6" maxlength="20" class="required alphanumeric"/>
</div>
<div class="unit">
<label>重复输入新密码:</label>
<input type="password" name="rnewPassword" size="30" equalTo="#cp_newPassword" class="required alphanumeric"/>
</div>
</div>
</form>