You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.2 KiB
Plaintext
60 lines
2.2 KiB
Plaintext
5 years ago
|
<%--
|
||
|
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>
|