📄 managercheck.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理员登录</title>
</head>
<link href="../css/css1.css" rel="stylesheet" type="text/css">
<script language="javascript">
function checkEmpty(){
if(document.form.account.value==""){
window.alert("请输入管理员账号")
document.form.account.focus();
return false;
}
if(document.form.password.value==""){
window.alert("请输入管理员密码")
document.form.password.focus();
return false;
}
return true;
}
</script>
<body>
<br>
<table width="452" height="358" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td background="../image/land.jpg">
<form name="form" method="post" action="../managerAction.do?action=0" onSubmit="return checkEmpty()">
<table width="55%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="23%" height="30"><div align="right"><strong>账号:</strong></div></td>
<td width="77%"> <input name="account" type="text" size="23"></td>
</tr>
<tr>
<td height="30"><div align="right"><strong>密码:</strong></div></td>
<td> <input name="password" type="password" size="23"></td>
</tr>
</table>
<br>
<div align="center">
<input type="submit" name="Submit2" value="提交">
<input type="reset" name="reset" value="重置">
<a href="../index.jsp" ><strong>返回</strong></a>
</div>
</form>
<p> </p>
<p> </p></td>
</tr>
</table>
<p> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -