📄 regist.jsp
字号:
<%@ page contentType="text/html; charset=GBK" language="java" errorPage="exception.jsp"%>
<%@include file="taglibs.jsp"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>注册新用户</title>
<link href="img/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div align="center">
<div class="dojoDialog" style="width:300px;">
<logic:present name="msg" scope="request">
<div align="center" class="error">
${requestScope.msg}
</div>
</logic:present>
<logic:messagesPresent>
<bean:message key="errors.header"/>
<ul>
<html:messages id="error">
<li><bean:write name="error"/></li>
</html:messages>
</ul><hr />
</logic:messagesPresent>
<table>
<caption>
注册
</caption>
<html:form action="/processRegist" onsubmit="return validateRegistForm(this);">
<tr>
<td width="100px" align="center">用户名:</td>
<td><html:text property="user"/></td>
</tr>
<tr>
<td align="center">密 码:</td>
<td><html:password property="pass"/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input name="button" type="submit" value="注册" />
<input name="button" type="reset" value="重设" />
</td>
</tr>
</html:form>
<html:javascript formName="registForm"/>
</table>
</div><br>
</div>
<%@include file="copyright.jsp"%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -