You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
3.2 KiB
82 lines
3.2 KiB
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
|
|
%>
|
|
<!doctype html>
|
|
<html lang="zh_CN">
|
|
<head>
|
|
<base href="<%=basePath%>" />
|
|
<title>${title }</title>
|
|
<script type="text/javascript" src="themes/nzblue/js/jquery-1.8.0.min.js"></script>
|
|
<script type="text/javascript" src="js/pwd.js" charset="utf-8"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<jsp:include page="header.jsp"></jsp:include>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<div id="box" style="width: 1200px;">
|
|
<table class="table1200" border="0" align="center" cellpadding="1" cellspacing="0" bordercolor="#FFFFFF"
|
|
bgcolor="#FFFFFF" style="margin-bottom: 20px;">
|
|
<tr>
|
|
<td align="center" valign="top" bgcolor="#FFFFFF" class="bg_qc">
|
|
<div
|
|
style="font-size: 14px; background-color: #F5F5F5; height: 30px; width: 100%; line-height: 30px; text-align: left; font-family: 宋体;">
|
|
您的位置:<a href="index/index.action">首页</a> > 修改密码
|
|
</div>
|
|
<table height="30" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
<form action="index/editpwd.action" name="myform" method="post">
|
|
<table width="56%" border="0" cellpadding="5" cellspacing="1" bgcolor="#E0EDB7">
|
|
<tr>
|
|
<td height="30" colspan="2" align="center" background="themes/nzblue/images/nzcms/list_bg.gif" class="white14B">修改密码</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="80" height="50" align="right" bgcolor="#FFFFFF">用户账号:</td>
|
|
<td bgcolor="#FFFFFF">${sessionScope.username }<input type="hidden" name="username"
|
|
style="width: 260px; height: 30px" id="username" value="${sessionScope.username }" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td height="50" align="right" bgcolor="#FFFFFF">用户密码:</td>
|
|
<td bgcolor="#FFFFFF"><input type="password" name="password" style="width: 260px; height: 30px"
|
|
id="password" placeholder="请输入用户密码" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="50" align="right" bgcolor="#FFFFFF">新密码:</td>
|
|
<td bgcolor="#FFFFFF"><input type="password" name="newpassword" style="width: 260px; height: 30px"
|
|
id="newpassword" placeholder="请输入新密码" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td height="50" align="right" bgcolor="#FFFFFF">确认密码:</td>
|
|
<td bgcolor="#FFFFFF"><input type="password" name="repassword" style="width: 260px; height: 30px"
|
|
id="repassword" placeholder="请输入确认密码" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#FFFFFF" colspan="2" align="center"><label> <input type="submit" id="sub" value="提交" />
|
|
<input type="reset" id="res" value="重置" />
|
|
</label></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<table height="50" border="0" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<jsp:include page="footer.jsp"></jsp:include>
|
|
</body>
|
|
</html>
|
|
|