joincontent.jsp

来自「the musiccollection struts 1 application」· JSP 代码 · 共 86 行

JSP
86
字号
<%@ include file="taglibs.jsp" %>
	<fmt:setBundle basename="ApplicationResources" />
	<table align="center" width = "80%">
		<tr><td>
				<html:errors property="join"/>
				<html:form action="join.do" focus="fname">
 				<table valign="top" align="left" style="border:1px solid" width="100%">
					<tr>
						<td colspan="2" align="center" style="font-size:18px;font-style:bold;">
							<fmt:message key="join.message"/>
						</td>
					</tr>
	  				<tr>
	    				<td align="right">
							<fmt:message key="join.fname"/>
						</td>
	   					<td align="left">
							<html:text 	property="fname" 
								size="20" 
								maxlength="20" />
							<html:errors property="fname" />
						</td>
	  				</tr>	
	  				<tr>
	    				<td align="right">
							<fmt:message key="join.lname"/>
						</td>
	   					<td align="left">
							<html:text 	property="lname" 
								size="20" 
								maxlength="20" />
							<html:errors property="lname" />
						</td>
	  				</tr>	
	  				<tr>
	    				<td align="right">
							<fmt:message key="login.email"/>
						</td>
	   					<td align="left">
							<html:text 	property="email" 
								size="25" 
								maxlength="25" />
							<html:errors property="email" />
						</td>
	  				</tr>	
	  				<tr>
	   					<td align="right">
							<fmt:message key="join.password"/>
						</td>
	   					<td align="left">
							<html:password 	property="password" 
									size="10" 
									maxlength="10" 
									redisplay="false"/>
							<html:errors property="password" />
						</td>
	 				</tr>	
	  				<tr>
	   					<td align="right">
							<fmt:message key="join.password2"/>
						</td>
	   					<td align="left">
							<html:password 	property="password2" 
									size="10" 
									maxlength="10" 
									redisplay="false"/>
							<html:errors property="password2" />
						</td>
	 				</tr>	
	 				<tr>
						<td align="right">
							<html:submit>
								<fmt:message key="join.button.join"/>
							</html:submit>
						</td>
						<td align="left">
							<html:cancel>
								<fmt:message key="join.button.cancel"/>
							</html:cancel>
						</td>
	  				</tr>
  				</table>
				</html:form>
  		</td></tr>
	</table>

⌨️ 快捷键说明

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