login.jsp
来自「shoppingCar 购物车」· JSP 代码 · 共 42 行
JSP
42 行
<%@page contentType="text/html;charset=gbk"%><%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><html><head><title>管理员登录</title><script> function validate(form){ var n = form[0].name.value; if(n.length == 0){ alter("姓名不能为空!"); form.name.foucs(); return false; } var p = form[0].password.value; if(p.length == 0){ alter("密码不能为空!"); form.name.foucs(); return false; } return true; }</script></head><body background="/ShoppingCar/imager/2.jpg"><h1 align="center"><font color="blue">管理员登录</font></h1><hr><center><form method="post" action="<c:url value="/manager/login.do"/>"><table border="1"><tr> <td>管理员姓名</td> <td><input type="text" name="name" /></td> </tr><tr> <td>密码</td> <td><input type="password" name="password"/></td></tr></table> <br> <input type="submit" onclick="return validate(form);" value="登录"/></form></center></body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?