Browse Source

新增密码字符范围提示

RuoYi 4 years ago
parent
commit
438fcc0928

+ 9 - 0
ruoyi-admin/src/main/resources/templates/system/user/profile/profile.html

@@ -115,6 +115,15 @@
                                         <label class="col-sm-2 control-label">新密码:</label>
                                         <div class="col-sm-10">
                                             <input type="password" class="form-control" name="newPassword" id="newPassword" placeholder="请输入新密码">
+                                            <th:block th:with="chrtype=${@config.getKey('sys.account.chrtype')}"> 
+						                        <th:block th:if="${chrtype != '0'}">
+						                            <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 == '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 == '4'}"><i class="fa fa-info-circle" style="color: red;"></i>  密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+)</th:block>
+						                            </span>
+						                    </th:block>      
                                         </div>
                                     </div>
                                     <div class="form-group">

+ 9 - 0
ruoyi-admin/src/main/resources/templates/system/user/profile/resetPwd.html

@@ -23,6 +23,15 @@
 				<label class="col-sm-3 control-label">新密码:</label>
 				<div class="col-sm-8">
 					<input class="form-control" type="password" name="newPassword" id="newPassword">
+                    <th:block th:with="chrtype=${@config.getKey('sys.account.chrtype')}"> 
+                        <th:block th:if="${chrtype != '0'}">
+                            <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 == '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 == '4'}"><i class="fa fa-info-circle" style="color: red;"></i>  密码必须包含(字母,数字,特殊字符!@#$%^&*()-=_+)</th:block>
+                            </span>
+                    </th:block>      
 				</div>
 			</div>
 			<div class="form-group">