⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 login.jsp

📁 仓库管理系统毕业设计论文最好的参考资料!
💻 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 + -