<!-- Configure the form -->
<FORM ACTION="login2.php" METHOD="post">
<input type="hidden" name="do" value="authenticate">
<!-- Create the form fields in a pretty table -->
<table border=0>
<tr>
<td><strong>Username</strong></td>
<td><input type="text" name="username" size="10" maxlength="10"></td>
</tr>
<tr>
<td><strong>Password</strong></td>
<td><input type="password" name="password" size="10" maxlength="10"></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Validate Me">
</td>
</tr>
</table>
