75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
|
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
||
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||
|
|
||
|
|
||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>pwd.jsp</title>
|
||
|
|
||
|
<meta http-equiv="pragma" content="no-cache">
|
||
|
<meta http-equiv="cache-control" content="no-cache">
|
||
|
<meta http-equiv="expires" content="0">
|
||
|
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
|
||
|
<meta http-equiv="description" content="This is my page">
|
||
|
<!--
|
||
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
||
|
-->
|
||
|
<link rel="stylesheet" type="text/css" href="<c:url value='/css/css.css'/>">
|
||
|
<link rel="stylesheet" type="text/css" href="<c:url value='/jsps/css/user/pwd.css'/>">
|
||
|
<script type="text/javascript" src="<c:url value='/jquery/jquery-1.5.1.js'/>"></script>
|
||
|
<script src="<c:url value='/js/common.js'/>"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="div0">
|
||
|
<span>修改密码</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="div1">
|
||
|
<form action="<c:url value='/jsps/msg.jsp'/>" method="post" target="_top">
|
||
|
<input type="hidden" name="method" value=""/>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td><label class="error">${msg }</label></td>
|
||
|
<td colspan="2"> </td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right">原密码:</td>
|
||
|
<td><input class="input" type="password" name="loginpass" id="loginpass" value=""/></td>
|
||
|
<td><label id="loginpassError" class="error"></label></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right">新密码:</td>
|
||
|
<td><input class="input" type="password" name="newpass" id="newpass" value=""/></td>
|
||
|
<td><label id="newpassError" class="error"></label></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right">确认密码:</td>
|
||
|
<td><input class="input" type="password" name="reloginpass" id="reloginpass" value=""/></td>
|
||
|
<td><label id="reloginpassError" class="error"></label></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right"></td>
|
||
|
<td>
|
||
|
<img id="vCode" src="" border="1"/>
|
||
|
<a href="javascript:_change();">看不清,换一张</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right">验证码:</td>
|
||
|
<td>
|
||
|
<input class="input" type="text" name="verifyCode" id="verifyCode" value=""/>
|
||
|
</td>
|
||
|
<td><label id="verifyCodeError" class="error"></label></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td align="right"></td>
|
||
|
<td><input id="submit" type="submit" value="修改密码"/></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|