register.ftl 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <base href="<@base/>">
  5. <title>My JSP 'register.jsp' starting page</title>
  6. <meta http-equiv="pragma" content="no-cache">
  7. <meta http-equiv="cache-control" content="no-cache">
  8. <meta http-equiv="expires" content="0">
  9. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  10. <meta http-equiv="description" content="This is my page">
  11. </head>
  12. <body>
  13. <div class="container">
  14. <table border="0" style="width:100%;">
  15. <tr>
  16. <td width="630px">
  17. </td>
  18. <td>
  19. <form action="<@base />/registration/register" method="post">
  20. <table class="datatable">
  21. <tr>
  22. <td><@locale code="register.lastname"/></td>
  23. <td><input type='text' id="lastName" name="lastName" value="" /></td>
  24. </tr>
  25. <tr>
  26. <td><@locale code="register.firstname"/></td>
  27. <td><input type='text' id="firstName" name="firstName" value="" /></td>
  28. </tr>
  29. <tr>
  30. <td><@locale code="register.workemail"/></td>
  31. <td><input type='text' id="workEmail" name="workEmail" value="" /></td>
  32. </tr>
  33. <tr>
  34. <td><@locale code="register.company"/></td>
  35. <td><input type='text' id="company" name="company" value="" /></td>
  36. </tr>
  37. <tr>
  38. <td><@locale code="register.workphone"/></td>
  39. <td><input type='text' id="workPhone" name="workPhone" value="" /></td>
  40. </tr>
  41. <tr style="display:none">
  42. <td><@locale code="register.users"/></td>
  43. <td><input type='text' id="users" name="users" value="0" /></td>
  44. </tr>
  45. <tr>
  46. <td colspan="2"><input id="registerBtn" class="button" type="submit" value="<@locale code="register.button.register" />"/></td>
  47. </tr>
  48. </table>
  49. </form>
  50. </td>
  51. </tr>
  52. </table>
  53. </div>
  54. </body>
  55. </html>