blob: f5ffd219ed0dabfb2772c780e29411ff70ced782 [file] [log] [blame]
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<html:html>
<head>
<title><bean:message key="Register.title"/></title>
</head>
<body>
<html:errors/>
<html:form action="/RegisterSave">
<table border="0" width="100%">
<tr>
<th align="right">
Username:
</th>
<td align="left">
<html:text property="username" size="16" maxlength="16"/>
</td>
</tr>
<tr>
<th align="right">
Password:
</th>
<td align="left">
<html:password property="password" size="16"
maxlength="16"/>
</td>
</tr>
<tr>
<th align="right">
Confirm Password:
</th>
<td align="left">
<html:password property="password2" size="16"
maxlength="16"/>
</td>
</tr>
<!-- Lab 1-2: Insert remaining fields from use case -->
<tr>
<th align="right">
Fullname:
</th>
<td align="left">
<html:text property="fullName" size="50"/>
</td>
</tr>
<tr>
<th align="right">
From Address:
</th>
<td align="left">
<html:text property="fromAddress" size="50"/>
</td>
</tr>
<tr>
<th align="right">
Reply To Address:
</th>
<td align="left">
<html:text property="replyToAddress" size="50"/>
</td>
</tr>
<tr>
<td align="right">
<html:submit property="DO_SUBMIT">
<bean:message key="button.submit"/>
</html:submit>
</td>
<td align="left">
<html:reset property="DO_RESET">
<bean:message key="button.reset"/>
</html:reset>
&nbsp;
<html:cancel/>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>