login.jsp
来自「struts1 hibernate3 电子购物商城源码 加上了ANT编译.」· JSP 代码 · 共 47 行
JSP
47 行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ page language="java" contentType="text/html; charset=utf-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<html:html xhtml="true" lang="true">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Simple form using ActionForm</title>
<html:base />
<body background="member/regist.jpg">
<html:errors />
<html:form action="loginAction">
<table align="center" border="1">
<tr>
<td>
<bean:message key="prompt.username"/>
</td>
<td>
<html:text property="username" size="15" />
</td>
</tr>
<tr>
<td>
<bean:message key="prompt.password"/>
</td>
<td>
<html:password property="password" size="15" />
</td>
</tr>
<tr>
<td>
<html:submit >
<bean:message key="button.submit"/>
</html:submit>
</td>
<td>
<a href="regist.jsp"><bean:message key="prompt.regist"/> </a>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?