📄 changepwd.asp
字号:
<!-- #include file="include/adovbs.inc" -->
<!-- #include file="include/dataconn.asp" -->
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<link rel="stylesheet" href="include/e1.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></HEAD>
<script language="javascript">
function check()
{
if((form1.txtpassword1.value=="")&&(form1.txtpassword2.value==""))
{
alert("至少需要输入密码!");
document.form1.txtpassword1.focus();
return false;
}
else
{
if((form1.txtpassword1.value!=form1.txtpassword2.value))
{
alert("两次密码输入不相同!");
document.form1.txtpassword1.focus();
return false;
}
else
{
return true;
document.form1.submit();
}
}
}
</script>
<BODY>
<form name="form1" method="post" action="pwdchange.asp" onsubmit="return check();">
<p> </p>
<p> </p>
<table width="70%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#f7f7f7" bordercolordark="#FFFFFF">
<tr>
<td height="50" colspan="3" bgcolor="#CCDDEE"> <div align="center"><font size="3">修
改 密 码</font></div></td>
</tr>
<tr>
<td width="8%"> </td>
<td width="71%"> <div align="center"><br>
密 码:
<input name="txtpassword1" type="password" size="20" maxlength="20" value="">
</div>
<p align="center"> 重复密码:
<input name="txtpassword2" type="password" size="20" maxlength="20" value="">
</p>
<p align="center">
<input type="submit" name="Submit" value="修 改" class="b02">
</p></td>
<td width="21%"> </td>
</tr>
</table>
<br><br>
<strong><font color="#FF0000"> *</font></strong>填写的密码一定不要与你的银行卡密码相同或类似,强烈建议使用字母和数字混合的密码!
</form>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -