📄 modipass.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" %>
<%@ include file="top.jsp"%>
<TABLE cellSpacing=0 cellPadding=0 width=778 border=0>
<TBODY>
<TR>
<TD vAlign=top align=middle width=150 background=images/leftmanu_bg.gif>
<%@ include file="left.jsp"%>
</TD>
<TD style="BACKGROUND-POSITION: right 50%; BACKGROUND-IMAGE: url(images/bg1.gif); BACKGROUND-REPEAT: repeat-y; BACKGROUND-COLOR: #ffffff" vAlign=top align=middle width=628>
<div align=center>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align=center>
<tr>
<td height="30"> </td>
</tr>
<tr>
<td><div align="center">
<table width="610" border="0" cellspacing="0" cellpadding="0" align=center>
<tr>
<td height="24" background="images/del_6.gif"><table width="285" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="102"><div align="center">
<p class="zl"></p>
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="610" border="0" cellpadding="3" cellspacing="1" bgcolor="97C5E4">
<tr>
<td height="610" valign="top" bgcolor="#FFFFFF"><div align="center">
<table width="610" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20"> </td>
</tr>
<tr>
<td><div align="center">
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="24" bgcolor="E4E6E7"><table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30"><img src="../images/pointi.gif" ></td>
<td class="zl"><strong><font color="#1F69A0">修改密码</font></strong></td>
</tr>
</table></td>
</tr>
<tr>
<td height="18"> </td>
</tr>
<tr>
<td><form action="modipassok.jsp" method="post" name="Form1" >
<table width="500" border="0" cellpadding="3" cellspacing="1" bgcolor="A8A8A9">
<tr bgcolor="EAECED">
<td height="35" colspan="3">
<div align="center">
<p class="zl2"><font color="3C3E3F">请输入旧密码及新密码</font></p>
</div></td>
</tr>
<tr>
<td width="18%" height="35" bgcolor="#FFFFFF">
<div align="center"><a href="#" class="zllink"><font color="444A4F">旧密码</font></a>:<FONT color=red size=2>*</FONT></div></td>
<td colspan="2" bgcolor="#FFFFFF">
<input name="oldpass" type="password" class="zl" id="oldpass" size="30"></td>
</tr>
<tr>
<td width="18%" height="35" bgcolor="#FFFFFF">
<div align="center"><a href="#" class="zllink"><font color="444A4F">新密码</font></a>:<FONT color=red size=2>*</FONT></div></td>
<td colspan="2" bgcolor="#FFFFFF">
<input name="pass" type="password" class="zl" id="pass" size="30"></td>
</tr>
<tr>
<td width="18%" height="35" bgcolor="#FFFFFF">
<div align="center"><a href="#" class="zllink"><font color="444A4F">确认新密码</font></a>:<FONT color=red size=2>*</FONT></div></td>
<td colspan="2" bgcolor="#FFFFFF">
<input name="confirmPassword" type="password" class="zl" id="confirmPassword" size="30"></td>
</tr>
<tr>
<td width="18%" height="80" bgcolor="#FFFFFF">
<div align="center"></div></td>
<td colspan="2" bgcolor="#FFFFFF"><div align="center">
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<input type="button" value="修改" onclick="check()"></td>
<td><input type="reset" name="Submit3" value="重置"></td>
</tr>
</table>
</div></td>
</tr>
</table>
</form></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td height="25"> </td>
</tr>
</table>
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td height="40"> </td>
</tr>
</table>
</div></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</div>
</TD></TR></TBODY></TABLE><IMG
height=10 src="images/bottom.gif" width=778><BR>
<%@ include file="end.jsp"%>
</BODY></HTML>
<script LANGUAGE="JavaScript">
function check()
{
if (document.Form1.oldpass.value == "")
{
alert("请填写您的旧密码!");
document.Form1.oldpass.focus();
return (false);
}
if (document.Form1.pass.value =="")
{
alert("请填写新密码!");
document.Form1.pass.focus();
return (false);
}
if(document.Form1.confirmPassword.value==""){
alert("请输入您的确认新密码!");
document.Form1.confirmPassword.focus();
return (false);
}
var filter=/^\s*[.A-Za-z0-9_-]{5,15}\s*$/;
if (!filter.test(document.Form1.pass.value)) {
alert("新密码填写不正确,请重新填写!可使用的字符为(A-Z a-z 0-9 _ - .)长度不小于5个字符,不超过15个字符,注意不要使用空格。");
document.Form1.pass.focus();
document.Form1.pass.select();
return (false);
}
if (document.Form1.pass.value!=document.Form1.confirmPassword.value ){
alert("两次填写的新密码不一致,请重新填写!");
document.Form1.pass.focus();
document.Form1.pass.select();
return (false);
}
document.Form1.submit()
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -