📄 add.asp
字号:
<html>
<head>
<title>添加网站用户</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href=".css" type="text/css">
<link rel="stylesheet" href="../images/font.css" type="text/css">
<script language="JavaScript">
function isok(theform)
{
if (theform.username.value=="")
{
alert("用户名不能为空!")
theform.username.focus();
return false;
}
if (theform.password.value=="")
{
alert("密码不能为空!")
theform.password.focus();
return false;
}
if (theform.password.value!=theform.repassword.value)
{
alert("密码输入不一致!")
theform.repassword.value=""
theform.password.value=""
theform.password.focus();
return false;
}
}
</script>
<link href="../cbebcss.css" rel="stylesheet" type="text/css">
<link href="../../gq.css" rel="stylesheet" type="text/css">
</head>
<body text="#666666" background="../images/bgpic.gif">
<br>
<table width="90%" border="0" cellspacing="2" cellpadding="5" align="center" class="unnamed1">
<form name="form1" method="post" action="save.asp" onSubmit="return isok(this)">
<tr>
<td height="39" align="center" class="unnamed2"> <div align="right"><br>
</div></td>
<td height="39" class="unnamed1"><strong>添加网站用户</strong></td>
</tr>
<tr bgcolor="">
<td width="20%" height="14" align="right" class="unnamed1">登 录 名: </td>
<td width="73%" height="14" class="unnamed1"> <input type="text" name="username" size="30" class="button">
</td>
</tr>
<tr bgcolor="">
<td width="20%" height="14" align="right" class="unnamed1">密 码: </td>
<td height="14" class="unnamed1"><input type="password" name="password" size="30" class="button"></td>
</tr>
<tr bgcolor="">
<td align="right" width="20%" height="30" class="unnamed1"> 确认密码: </td>
<td width="73%" height="30" class="unnamed1"><input name="repassword" type="password" class="button" id="repassword2" size="30">
</td>
</tr>
<tr bgcolor="">
<td align="right" width="20%" class="unnamed1"> </td>
<td width="73%" class="unnamed1"> <br>
<input type="submit" name="Submit3" value="添加" class="button">
<input type="reset" name="Submit22" value="取消" class="button"> </td>
</tr>
<tr bgcolor="">
<td align="right" width="20%"> </td>
<td width="73%"><br> </td>
</tr>
</form>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -