Anyone seen this before?
Simple login form with a password and confirming password field.
Upon posting the form the confirming password field is getting a BOX (Carriage Return) concontenated to the end of it, thus causing the log in to fail since the passwords don't match now.
Here's the form:
<form method=post action="register_new.php">
<table bgcolor=#cccccc>
<tr>
<td>Email address:</td>
<td><input type=text name=email size=30 maxlength=100></td></tr>
<tr>
<td>Preferred username <br>(max 16 chars):</td>
<td valign=top><input type=text name=username size=16 maxlength=16></td></tr>
<tr>
<td>Password <br>(between 6 and 16 chars):</td>
<td valign=top><input type=password name=passwd size=16 maxlength=16></td></tr>
<tr>
<td>Confirm password:</td>
<td><input type=password name=passwd2 size=16 maxlength=16></td></tr>
<tr>
<td colspan=2 align=center>
<input type=submit value="Register"></td></tr>
</table></form>
Here are the variables being returned:
"Client", "name=g",
"Client", "passwd=boston",
"Client", "passwd2=boston ",
See that irritating space after boston in passwd2! Even if I don't enter anything in passwd2, it's still returning that annoying carriage return box!