grgw_old_java/heatsupply2/WebContent/webpage/modules/sys/userModifyPwd.jsp

46 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2025-07-01 14:56:45 +08:00
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/webpage/include/taglib.jsp"%>
<html>
<head>
<title>修改密码</title>
<meta name="decorator" content="default"/>
<script type="text/javascript">
$(document).ready(function() {
$("#oldPassword").focus();
});
</script>
</head>
<body>
<form:form id="inputForm" modelAttribute="user" action="${ctx}/sys/user/modifyPwd" method="post" class="form-horizontal form-group">
<form:hidden path="id"/>
<sys:message hideType="1" content="${message}"/>
<div class="control-group">
</div>
<table class="table table-bordered table-condensed dataTables-example dataTable no-footer">
<tbody>
<tr>
<td class="width-15 active"><label class="pull-right"><span style="color:red;">*</span>旧密码:</label></td>
<td class="width-35">
<input id="oldPassword" name="oldPassword" type="password" value="" maxlength="50" minlength="3" class="form-control max-width-250 required"/>
</td>
</tr>
<tr>
<td class="width-15 active"><label class="pull-right"><span style="color:red;">*</span>新密码:</label></td>
<td class="width-35">
<input id="newPassword" name="newPassword" type="password" value="" maxlength="50" minlength="3" class="form-control max-width-250 required"/>
</td>
</tr>
<tr>
<td class="width-15 active"><label class="pull-right"><span style="color:red;">*</span>确认新密码:</label></td>
<td class="width-35">
<input id="confirmNewPassword" name="confirmNewPassword" type="password" value="" maxlength="50" minlength="3" class="form-control max-width-250 required" equalTo="#newPassword"></input>
</td>
</tr>
</tbody>
</table>
<div class="form-actions">
<!-- <input id="btnSubmit" class="btn btn-primary" type="submit" style="display:none" value="保 存"/> -->
</div>
</form:form>
</body>
</html>