login_form.jsp

来自「达内网上购物系统」· JSP 代码 · 共 72 行

JSP
72
字号
<%@page contentType="text/html;charset=utf-8"%>
<%@include file="../common/taglib.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<title>登录 - 当当网</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<%@include file="../common/common.jsp"%>

	</head>
	<body>


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

		<div class="enter_part">

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

			<div class="enter_in">
				<div class="bj_top"></div>
				<div class="center">
					<div style="height: 30px; padding: 5px; color: red"
						id="divErrorMssage">
						<html:errors property="error.verify.user"/>
						<html:errors property="email"/><br/>
						<html:errors property="password"/>
					</div>
					<div class="main">
						<h3>
							登录当当网
						</h3>


						<html:form method="post" action="login" styleId="ctl00">
							<ul>
								<li>
									<span>请输入Email地址:</span>
									<html:text property="email" styleId="txtUsername"
										styleClass="textbox" />
								</li>
								<li>
									<span class="blank">密码:</span>
									<html:password property="password" styleId="txtPassword"
										styleClass="textbox" />
								</li>
								<li>
									<html:submit styleId="btnSignCheck" styleClass="button_enter">登 录</html:submit>
								</li>
							</ul>
						</html:form>


					</div>
					<div class="user_new">
						<p>
							您还不是当当网用户?
						</p>
						<p class="set_up">
							<a href="showRegisterOne.do">创建一个新用户&gt;&gt;</a>
						</p>
					</div>
				</div>
			</div>
		</div>

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

	</body>
</html>

⌨️ 快捷键说明

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