<!DOCTYPE html>
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
<head>
|
<th:block th:include="include :: header('修改用户密码')" />
|
</head>
|
<body class="white-bg">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<form class="form-horizontal m" id="form-user-resetPwd">
|
<input name="userId" type="hidden" th:value="${user.userId}" />
|
<div class="form-group">
|
<label class="col-sm-3 control-label ">[[#{jsp.system.user.profile.002}]]:</label>
|
<div class="col-sm-8">
|
<input class="form-control" type="text" readonly="true" name="loginName" th:value="${user.loginName}"/>
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">[[#{jsp.system.user.profile.008}]]:</label>
|
<div class="col-sm-8">
|
<input class="form-control" type="password" name="oldPassword" id="oldPassword">
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">[[#{jsp.system.user.profile.009}]]:</label>
|
<div class="col-sm-8">
|
<input class="form-control" type="password" name="newPassword" id="newPassword">
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">[[#{jsp.system.user.profile.010}]]:</label>
|
<div class="col-sm-8">
|
<input class="form-control" type="password" name="confirm" id="confirm">
|
<span class="help-block m-b-none"><i class="fa fa-info-circle"></i> [[#{jsp.system.user.profile.013}]]</span>
|
</div>
|
</div>
|
</form>
|
</div>
|
<th:block th:include="include :: footer" />
|
|
<script>
|
$("#form-user-resetPwd").validate({
|
rules:{
|
oldPassword:{
|
required:true,
|
remote: {
|
url: ctx + "system/user/profile/checkPassword",
|
type: "get",
|
dataType: "json",
|
data: {
|
password: function() {
|
return $("input[name='oldPassword']").val();
|
}
|
}
|
}
|
},
|
newPassword: {
|
required: true,
|
minlength: 5,
|
maxlength: 20
|
},
|
confirm: {
|
required: true,
|
equalTo: "#newPassword"
|
}
|
},
|
messages: {
|
oldPassword: {
|
required: [[#{jsp.system.user.profile.014}]],
|
remote: [[#{jsp.system.user.profile.015}]]
|
},
|
newPassword: {
|
required: [[#{jsp.system.user.profile.016}]],
|
minlength: [[#{jsp.system.user.profile.017}]],
|
maxlength: [[#{jsp.system.user.profile.018}]]
|
},
|
confirm: {
|
required: [[#{jsp.system.user.profile.013}]],
|
equalTo: [[#{jsp.system.user.profile.019}]]
|
}
|
|
},
|
focusCleanup: true
|
});
|
|
function submitHandler() {
|
if ($.validate.form()) {
|
$.operate.save(ctx + "system/user/profile/resetPwd", $('#form-user-resetPwd').serialize());
|
}
|
}
|
</script>
|
</body>
|
|
</html>
|