📄 index.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%
String error = (String) request.getAttribute("error");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>管理员登录</title>
<style type="text/css">
<!--
.STYLE1 {
font-family: "微软雅黑";
font-weight: bold;
font-size: 18px;
}
.STYLE3 {
font-family: "微软雅黑";
font-weight: bold;
}
-->
</style>
</head>
<body>
<table width="600" border="0" align="center">
<tr>
<td height="60" colspan="2" align="center">
<span class="STYLE1">管理员登录</span>
</td>
</tr>
<%
if (error != null) {
%>
<tr>
<td height="60" colspan="2" align="center">
<span class="STYLE1">
<%
out.print(error);
%> </span>
</td>
</tr>
<%
}
%>
<tr>
<td colspan="2">
<form name="form1" method="post" action="login.jsp">
<table width="300" border="0" align="center">
<tr>
<td width="96">
<span class="STYLE3">管理员帐户:</span>
</td>
<td width="94">
<input type="text" name="username" value="">
</td>
</tr>
<tr>
<td>
<span class="STYLE3">管理员密码:</span>
</td>
<td>
<input type="password" name="password">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="登录">
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -