📄 adminpwd_ch.htm
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>密码修改</title>
<style type="text/css">
<!--
div {
margin-top: 150px;
}
-->
</style>
<script language="vbscript">
sub OK()
PWD.TX_NewP.value=""
PWD.TX_NewPR.value=""
PWD.TX_NewP.focus()
end sub
sub IsOK()
a=Trim(PWD.TX_NewP.value)
b=Trim(PWD.TX_NewPR.value)
if a="" or b=""then
alert("输入不能为空!")
OK()
exit sub
end if
if StrComp(a,b)=0 then
PWD.submit()
else
alert("输入错误,请重新输入!")
OK()
end if
end sub
</script>
</head>
<body onload="OK()">
<div id="PWD_C">
<form name="PWD" action="adminPWD_Ch.asp" method="post">
<table align="center" width="406" border="0" cellspacing="1" bgcolor="#0099FF" cellpadding="0">
<tr>
<td height="30" align="right" width="112" bgcolor="#FFFFFF">新密码:</td>
<td width="339" bgcolor="#FFFFFF"> <input type="password" name="TX_NewP">
<font size="2" style="font-family:Arial, Helvetica, sans-serif ">密码长度在6-15位</font></td>
</tr>
<tr>
<td height="30" align="right" bgcolor="#FFFFFF">确认密码:</td>
<td bgcolor="#FFFFFF"> <input type="password" name="TX_NewPR">
<font size="2" style="font-family:Arial, Helvetica, sans-serif ">密码长度在6-15位</font></td>
</tr>
<tr>
<td height="30" colspan="2" align="center" bgcolor="#FFFFFF"><input name="enter" type="button" onclick="IsOK()" value="确定">
<input name="ReSet" type="reset" id="ReSet" value="重置"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -