📄 login.jsp
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>管理员登录</title></head>
<link rel="stylesheet" type="text/css" href="style2.css"/>
<body>
<center>
<h2><font color="#003399">管理员登录</font></h2>
<form method="post" action="verify.jsp">
<table border bordercolor=#00ccff>
<tr><td width="40%" bgcolor=#b7d3ff>用户名:</td>
<td><input type="text" name="user"></td>
<tr><td width="40%" bgcolor=#b7d3ff>密码:</td>
<td><input type="password" name="pw"></td>
<tr>
<td colspan="2" align="center" bgcolor=#b7d3ff>
<input type="submit" value="登录">
<input type="reset" value="清空">
</td>
</table>
</form>
<%
String warning=request.getParameter("warning");
if(warning!=null)
out.println("<h3>"+warning+",请重新登录或<a href='index.jsp'>返回首页</a></h3>");
%>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -