📄 login.jsp
字号:
<%@ page pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>仓库后台登陆</title>
</head>
<body >
<center>仓库后台登陆
<form action="LoginAction.login.do" method="post">
<table>
<tr>
<td colspan="2">
<font color="red">
<c:if test="${requestScope.error != null}"/>
<c:out value="${requestScope.error}"/>
</font>
</td>
</tr>
<tr>
<td>用户名:</td>
<td><input name="userid"></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td><input type="submit" value="登陆"></td>
<td><input type="reset"></td>
</tr>
</table>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -