I have a form that asks for a user's user ID and email address. Is there any way to remove part of the value entered for User ID if someone enters "id12345" instead of just "12345"? Sometimes users are inputting the id part also and then aren't able to log in. I don't want to just limit the field length either - I want this to be as transparent as possible. If they put in anything but text I want it stripped away.
Thanks!
Thanks!
Code:
<form method="post" action="check.epl">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td>Enter your UserID</td>
<td>
<input type="text" name="id">
</td>
</tr>
<tr>
<td>Enter your email address<td>
<input type="text" name="email"></tr>
</table>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>