弱密码强制修改
parent
07aebd5c12
commit
d240697b68
@ -0,0 +1,59 @@
|
||||
<%--
|
||||
Created by IntelliJ IDEA.
|
||||
User: ljx
|
||||
Date: 2019/5/13
|
||||
Time: 17:02
|
||||
To change this template use File | Settings | File Templates.
|
||||
--%>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>密码过于简单请修改密码在登录</title>
|
||||
<%@ include file="/WEB-INF/jspf/common.jspf" %>
|
||||
</head>
|
||||
<body>
|
||||
<form class="form-horizontal" role="form">
|
||||
<fieldset>
|
||||
<legend style="text-align: center;font-weight: bold;font-size: 25px">密码过于简单请修改密码在登录</legend>
|
||||
</fieldset>
|
||||
<form>
|
||||
<%--<div class="form-group">--%>
|
||||
<%--<label for="userPwd" class="col-sm-2 control-label">旧密码</label>--%>
|
||||
<%--<div class="col-sm-5">--%>
|
||||
<%--<input type="password" class="form-control" readonly value="${user.userPwd}" id="userPwd"--%>
|
||||
<%--placeholder="请输入旧密码">--%>
|
||||
<%--</div>--%>
|
||||
<%--</div>--%>
|
||||
<div class="form-group">
|
||||
<label for="newUserPwd" class="col-sm-2 control-label">密码</label>
|
||||
<div class="col-sm-5">
|
||||
<input type="password" class="form-control" id="newUserPwd" name="newUserPwd" onblur="AnalyzePasswordSecurityLevel('newUserPwd')"
|
||||
placeholder="请输入新密码" maxlength="16">
|
||||
</div>
|
||||
<div id="newUserPwdText" class="col-sm-2" style="color: red">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="newReUserPwd" class="col-sm-2 control-label">重复密码</label>
|
||||
<div class="col-sm-5">
|
||||
<input type="password" class="form-control" id="newReUserPwd" onblur="AnalyzePasswordSecurityLevel('newReUserPwd')"
|
||||
placeholder="请输入重复密码" maxlength="16">
|
||||
</div>
|
||||
<div id="newReUserPwdText" class="col-sm-2" style="color: red">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<button type="button" class="btn btn-primary" id="btn_submit">提交更改</button>
|
||||
<button type="button" class="btn btn-default" id="btn_clear">清空</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
</body>
|
||||
<script src="${path}/static/js/updatePassword.js?t=1"></script>
|
||||
</html>
|
Loading…
Reference in New Issue