login.jsp

来自「一款仿msdn聊天程序,用java编写,很好用!」· JSP 代码 · 共 57 行

JSP
57
字号
<%@ page contentType="text/html;charset=gb2312"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<html>
	<head>
		<title>Struts+DAO 留言管理程序——登陆</title>
	</head>
	<body>
		<center>
			<h1>
				留言管理范例 —— Struts + DAO实现
			</h1>
			<hr>
			<br>
			<logic:present name="err" scope="request">
				<h2>
					${err}
				</h2>
			</logic:present>
			<html:form action="person.do" method="post">
				<table width="80%">
					<tr>
						<td colspan="2">
							用户登陆
						</td>
					</tr>
					<tr>
						<td>
							用户名:
						</td>
						<td>
							<html:text property="id"></html:text>
						</td>
					</tr>
					<tr>
						<td>
							密&nbsp;&nbsp;码:
						</td>
						<td>
							<html:password property="password"></html:password>
						</td>
					</tr>
					<tr>
						<td colspan="2">
							<input type="hidden" name="status" value="login">
							<input type="submit" value="登陆">
							<input type="reset" value="重置">
						</td>
					</tr>
				</table>
			</html:form>
		</center>
	</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?