Example #1
0
}
?>
<h1>Registration</h1>
<form action="register.php" method="POST"
  autocomplete="off">
  <table>
    <tr>
      <th>Username</th>
      <td><input type="text" size="10" name="user" maxlength="20" /></td>
    </tr>
    <tr>
      <th>E-mail</th>
      <td><input type="text" size="25" name="email" maxlength="60" /></td>
    </tr>
    <tr>
      <th>Password</th>
      <td><input type="password" size="10" name="password" maxlength="60" /></td>
    </tr>
    <tr>
      <th>Confirm password</th>
      <td><input type="password" size="10" name="password_confirm" maxlength="60" /></td>
    </tr>
    <tr>
      <td><input type="submit" value="Register" name="register" /></td>
    </tr>
  </table>
</form>

<?php 
Template::build_footer();