modifyPassword.html
1.4 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
<!DOCTYPE html>
<html lang="zh">
#@header()
<body>
<div>
<ol class="breadcrumb">
<li>
<a>系统管理</a>
</li>
<li>
<a style="color: gray;">/</a>
</li>
<li class="active">修改密码</li>
</ol>
<div style="margin: 10px;">
<form action="#(contextPath)/sysUser/modifyPasswordAction" method="post">
<table class="table table-bordered table-advance table-hover">
<tr>
<td>旧密码</td>
<td><input class="form-control" name="oldPassword" type="password" value="#(oldPassword)" required /></td>
</tr>
<tr>
<td>新密码1</td>
<td><input class="form-control" name="password1" type="password" value="#(password1)" required /></td>
</tr>
<tr>
<td>新密码2</td>
<td><input class="form-control" name="password2" type="password" value="#(password2)" required /></td>
</tr>
</table>
<label style="color: red; font-size: 16px;">#(errorMsg??)</label>
<div class="form-actions" style="margin-top: 10px; margin-left: 40%;">
<button class="btn btn-success" type="submit">保 存</button>
<a class="btn" type="button" onclick="javascript:history.back(-1);" style="margin-left: 30px;">返 回</a>
</div>
</form>
</div>
</div>
<script type="text/javascript">
#if(flag)
showTip('#(flag)');
#end
</script>
</body>
</html>