admin.jsp

来自「 一个用JSP写的基于了B/S的图书馆管理系统」· JSP 代码 · 共 41 行

JSP
41
字号
<%@ page contentType="text/html; charset=GB2312" %>
<html>
<head>
<title>
管理员入口
</title>
<script language="javascript" type="">
function checkform()
{
  if(document.form1.password.value!="123456")
  {
    alert("不是管理员也想登录....小子,不想活了!");
    document.form1.password.focus();
  }
  else
  {
    alert("哈哈,就是你了,后台正在开发之中。。。。。。");
  }
}
</script>
</head>
<body bgcolor="#ffffff">
<h1 align="center">后台管理入口
</h1>

<form name="form1" action="admin.jsp" method="POST" >
<table border="1" cellpadding="1" align="center" cellspacing="0" bgcolor="000000">
<tr>
  <td align="left"><font color="RED">登录密码:</font></td>
  <td align="center"><input name="password" /></td>
</tr>
<tr>
  <td align="center"><button type="submit" onclick="return(checkform());">确 认</button></td>
  <td align="center"><button type="reset">重 置</button></td>
</tr>
</table>
</form>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?