📄 alteruserpassword.jsp~14~
字号:
<%@page contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib tagdir="/WEB-INF/tags/" prefix="mytag"%>
<HTML>
<HEAD>
<TITLE>管理系统之导航</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gbk">
<style type="text/css">
<!--
.STYLE1 {
color: #FF0000;
font-size: 14px;
}
.STYLE9 {
color: #FF9900;
font-weight: bold;
font-size: 16px;
}
.STYLE10 {color: #00CC99}
.STYLE12 {
color: #00CC99;
font-weight: bold;
font-size: 14px;
}
-->
</style>
</HEAD>
<LINK href="datasrc/style.css" type=text/css rel=stylesheet>
<body>
<mytag:head/>
<!-- 在这里开始加入动态内容 -->
<TABLE cellSpacing=0 cellPadding=0 width=776 align=center background=datasrc/centerbg.gif border=0>
<TBODY>
<TR>
<td align="center">
<c:choose>
<c:when test="${sessionScope.UserInfo.admin}">
<form action="" method="post" name="alterUserPswdFrom">
<table width="100%">
<tr>
<td align="right"> </td>
<td><span class="STYLE9">修改用户密码</span></td>
</tr>
<tr>
<td align="right"><span class="STYLE12">用户名</span></td>
<td><label>
<input name="userName" type="text" id="userName">
<span class="STYLE1">*</span>
</label></td>
</tr>
<tr>
<td align="right"><span class="STYLE12">原密码</span></td>
<td><label>
<input name="userPassword" type="password" id="userPassword">
<span class="STYLE1"> *</span></label></td>
</tr>
<tr>
<td align="right"><span class="STYLE12">新密码</span></td>
<td><label>
<input name="newPasswordOne" type="password" id="newPasswordOne">
<span class="STYLE1"> *</span></label></td>
</tr>
<tr>
<td align="right"><span class="STYLE12">再输入一次新密码:</span></td>
<td><label>
<input name="newPasswordTowe" type="password" id="newPasswordTowe">
<span class="STYLE1"> *</span></label></td>
</tr>
<tr>
<td align="right"> </td>
<td><label>
<input type="submit" value="提交">
</label>
<label>
<input type="reset" value="重置">
</label></td>
</tr>
<tr>
<td colspan="2" align="right"> </td>
</tr>
</table>
</form>
</c:when>
<c:otherwise>
<jsp:forward page="IllegalAccessError.jsp"/>
</c:otherwise>
</c:choose>
</TD>
</TR>
</TBODY>
</TABLE>
<!-- 在这里结束加入动态内容 -->
<mytag:cauda/>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -