userlogin.jsp

来自「BBS论坛管理系统」· JSP 代码 · 共 59 行

JSP
59
字号
<%@ page contentType="text/html;charset=utf-8" language="java"%>

<%@ include file="/common/taglibs.jsp"%>

<html:html>
<head>
	<title>
		用户登录
	</title>
</head>

<link href="images/myStyleClass.css" rel="stylesheet" type="text/css">

<body>
	<%@ include file="/common/header.jsp"%>

	<html:errors />

	<html:form action="userlogin.do" focus="username">
		<center>
			<table border="0" cellspacing="2" cellpadding="2" width="100%">
				<tr>
					<td width="40%" align="right">
						用户名
					</td>
					<td width="60%">
						<html:text property="username" />
					</td>
				</tr>
				<tr>
					<td align="right">
						密码
					</td>
					<td width="60%">
						<html:password property="password" />
					</td>
				</tr>
				<tr>
					<td align="right">
						<html:submit property="submit">                     
		      				登录
		      			</html:submit>
					</td>
					<td align="left">
						<A href="userlogin.do?username=guest">
							<bean:message key="userlogin.jsp.guest" />
						</A>
						<A href="registration.do">
							<bean:message key="userlogin.jsp.sign" />
						</A>
					</td>
				</tr>
			</table>
		</center>
	</html:form>
	<%@ include file="/common/footer.jsp"%>
</body>
</html:html>

⌨️ 快捷键说明

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