📄 joincontent.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -