密码强度字符范围提示

pull/233/head
Byron.Liu 2020-12-07 11:33:06 +08:00
parent 438fcc0928
commit f884fc927f
2 changed files with 92 additions and 90 deletions

View File

@ -123,6 +123,7 @@
<th:block th:if="${chrtype == '3'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字)</th:block> <th:block th:if="${chrtype == '3'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字)</th:block>
<th:block th:if="${chrtype == '4'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+</th:block> <th:block th:if="${chrtype == '4'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+</th:block>
</span> </span>
</th:block>
</th:block> </th:block>
</div> </div>
</div> </div>

View File

@ -1,103 +1,104 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head> <head>
<th:block th:include="include :: header('修改用户密码')" /> <th:block th:include="include :: header('修改用户密码')" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> <div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-user-resetPwd"> <form class="form-horizontal m" id="form-user-resetPwd">
<input name="userId" type="hidden" th:value="${user.userId}" /> <input name="userId" type="hidden" th:value="${user.userId}" />
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">登录名称:</label> <label class="col-sm-3 control-label">登录名称:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control" type="text" readonly="true" name="loginName" th:value="${user.loginName}"/> <input class="form-control" type="text" readonly="true" name="loginName" th:value="${user.loginName}"/>
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">旧密码:</label> <label class="col-sm-3 control-label">旧密码:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control" type="password" name="oldPassword" id="oldPassword"> <input class="form-control" type="password" name="oldPassword" id="oldPassword">
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">新密码:</label> <label class="col-sm-3 control-label">新密码:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control" type="password" name="newPassword" id="newPassword"> <input class="form-control" type="password" name="newPassword" id="newPassword">
<th:block th:with="chrtype=${@config.getKey('sys.account.chrtype')}"> <th:block th:with="chrtype=${@config.getKey('sys.account.chrtype')}">
<th:block th:if="${chrtype != '0'}"> <th:block th:if="${chrtype != '0'}">
<span class="help-block m-b-none"> <span class="help-block m-b-none">
<th:block th:if="${chrtype == '1'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码只能为0-9数字 </th:block> <th:block th:if="${chrtype == '1'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码只能为0-9数字 </th:block>
<th:block th:if="${chrtype == '2'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码只能为a-z和A-Z字母</th:block> <th:block th:if="${chrtype == '2'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码只能为a-z和A-Z字母</th:block>
<th:block th:if="${chrtype == '3'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字)</th:block> <th:block th:if="${chrtype == '3'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字)</th:block>
<th:block th:if="${chrtype == '4'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+</th:block> <th:block th:if="${chrtype == '4'}"><i class="fa fa-info-circle" style="color: red;"></i> 密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+</th:block>
</span> </span>
</th:block>
</th:block> </th:block>
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">再次确认:</label> <label class="col-sm-3 control-label">再次确认:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control" type="password" name="confirmPassword" id="confirmPassword"> <input class="form-control" type="password" name="confirmPassword" id="confirmPassword">
<span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 请再次输入您的密码</span> <span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 请再次输入您的密码</span>
</div> </div>
</div> </div>
</form> </form>
</div> </div>
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />
<script> <script>
$("#form-user-resetPwd").validate({ $("#form-user-resetPwd").validate({
rules:{ rules:{
oldPassword:{ oldPassword:{
required:true, required:true,
remote: { remote: {
url: ctx + "system/user/profile/checkPassword", url: ctx + "system/user/profile/checkPassword",
type: "get", type: "get",
dataType: "json", dataType: "json",
data: { data: {
password: function() { password: function() {
return $("input[name='oldPassword']").val(); return $("input[name='oldPassword']").val();
} }
} }
} }
}, },
newPassword: { newPassword: {
required: true, required: true,
minlength: 5, minlength: 5,
maxlength: 20 maxlength: 20
}, },
confirmPassword: { confirmPassword: {
required: true, required: true,
equalTo: "#newPassword" equalTo: "#newPassword"
} }
}, },
messages: { messages: {
oldPassword: { oldPassword: {
required: "请输入原密码", required: "请输入原密码",
remote: "原密码错误" remote: "原密码错误"
}, },
newPassword: { newPassword: {
required: "请输入新密码", required: "请输入新密码",
minlength: "密码不能小于5个字符", minlength: "密码不能小于5个字符",
maxlength: "密码不能大于20个字符" maxlength: "密码不能大于20个字符"
}, },
confirmPassword: { confirmPassword: {
required: "请再次输入新密码", required: "请再次输入新密码",
equalTo: "两次密码输入不一致" equalTo: "两次密码输入不一致"
} }
}, },
focusCleanup: true focusCleanup: true
}); });
function submitHandler() { function submitHandler() {
var chrtype = [[${#strings.defaultString(@config.getKey('sys.account.chrtype'), 0)}]]; var chrtype = [[${#strings.defaultString(@config.getKey('sys.account.chrtype'), 0)}]];
var password = $("#newPassword").val(); var password = $("#newPassword").val();
if ($.validate.form() && checkpwd(chrtype, password)) { if ($.validate.form() && checkpwd(chrtype, password)) {
$.operate.save(ctx + "system/user/profile/resetPwd", $('#form-user-resetPwd').serialize()); $.operate.save(ctx + "system/user/profile/resetPwd", $('#form-user-resetPwd').serialize());
} }
} }
</script> </script>
</body> </body>
</html> </html>