index.htm
来自「辅助radius软件的管理程序web平台下的程序代码自己还没有测试过」· HTM 代码 · 共 47 行
HTM
47 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>系统登陆</title>
<script language="JavaScript">
function Juge(theForm)
{
if (theForm.textfield.value =="")
{
alert("请填上登陆名!");
theForm.textfield.focus();
return (false);
}
if (theForm.textfield2.value =="")
{
alert("请填上登陆密码!");
theForm.textfield2.focus();
return (false);
}
}
</script>
</head>
<body>
<p align="center">系统登陆</p>
<form name="form1" method="post" action="login.php" onsubmit="javascript:return Juge(this);">
<table border="1" align="center">
<tr>
<td>用户名</td>
<td><input name="textfield" type="text" id="textfield" size="16"></td>
</tr>
<tr>
<td>密 码</td>
<td><input name="textfield2" type="password" size="16"></td>
</tr>
</table>
<p align="center">
<input name="ok" type="submit" id="ok" value="提交">
<input name="Submit2" type="reset" value="重置">
</p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?