Awesome. So how does this look?
Code:<tr>
<form name=login>
<td colspan="2" width="235" height="79" background="images/login_bg.jpg" valign="top">
<div style="padding-top:15px;padding-left:35px;">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size:10px;">Username</td>
<td style="padding-left:12px;">
<input type="hidden" name="server" value="www.mrbobdouglas.com/">
<input type="text" name="username" style="width:80;height:20" size="20"></td>
</tr>
<tr><td height="3"></td></tr>
<tr>
<td style="font-size:10px;">Password</td>
<td style="padding-left:12px;">
<input type="password" style="width:80;height:20" size="20">
<input type=button value="Login!" onClick="Login(this.form)" name="button">
</td>
</tr>
</table>
</div>
</td>
</form>
</tr>
Let me just discuss what this will do.
There will be no interaction with the forum until a user clicks on the login button. Meaning, they will not be asked for their password until this happens.
Once they decide they would like to login, they will then enter their info, and cick submit. If their info is wrong, the javascript code that belongs in my head will display the error message, and not redirect them to the 401 error page, correct?
Once they login sucessfully, they will be taken to domain.com/username.
Is that correct?