日期:2014-05-17 浏览次数:21153 次
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>修改密码页面</title>
</head>
<script type="text/javascript"
src="<%=request.getContextPath()%>/js/jquery.min.js"></script>
<script type="text/javascript"
src="<%=request.getContextPath()%>/js/query.simplemodal.min.js"></script>
<body>
<form action="LoginAction!login.snbc" name="operationForm"
id="operationForm" method="post">
<table align="center">
<caption>
<h3>修改密码</h3>
</caption>
<tr>
<td>原 密 码 <input type="password" name="password" /></td>
</tr>
<tr>
<td>新 密 码 <input type="password" name="password" /></td>
</tr>
<tr>
<td>确认密码 <input type="password" name="password" /></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" onClick="changePsw();" value="确认" /></td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function changePsw(){
}
</script>
</html>