home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>User Registration</title>
- <meta http-equiv=Content-Type content="text/html">
- </head>
- <body onLoad="focusFirstField()">
- <%
- String contextPath = request.getContextPath();
- String msg = request.getParameter("msg");
- if (msg == null) msg = "";
- %>
- <center>
- <form method="post" action="<%=contextPath%>/servlet/register">
- <table cellspacing=2 cellpadding=2 border=0>
- <tr><td colspan=2 align=center valign=top height=50>
- <font color="#888888" size=+1><b>User Registration</b></font></td></tr>
- <tr><td>Username:</td>
- <td><input type="text" name="username" size=16 maxlength=50></td>
- </tr>
- <tr><td>Password:</td>
- <td><input type="password" name="password" size=16 maxlength=50></td>
- </tr>
- <tr><td>Email Address:</td>
- <td><input type="text" name="email_address" size=32 maxlength=50></td>
- </tr>
- <tr><td>Full Name:</td>
- <td><input type="text" name="full_name" size=32 maxlength=64></td>
- </tr>
- <tr><td colspan=2 align=center height=60>
- <input type="submit" value="Submit">
- <input type="reset" value="Reset">
- <script language="Javascript">
- <!--
- timezone=-new Date().getTimezoneOffset();
- document.write("<input type='hidden' name='timezone' value='" + timezone + "'>");
-
- function focusFirstField() {
- document.forms[0].username.focus();
- document.forms[0].username.select();
- }
- //-->
- </script>
- </td></tr>
- </table>
- </form>
- <font color=red><%=msg%></font>
- </center>
- <hr>
- <em>Powered by</em> <a href="http://www.websina.com/bugzero/"
- style="color: #999933; font-weight: bold; text-decoration: none">Bugzero</a>
-
- </body></html>
-