I have a login form that works fine in all browsers except Firefox on Windows XP.
Problem:
When inputing ‘username’, then tabbing to ‘password’, then pressing “enter” on the keyboard, I get the error: “you must submit a username and password.”
If I input ‘username’, then tab to ‘password’, then click the submit (GO) button with my mouse, I login fine.
Here is my code:
{if logged_out}
{exp:member:login_form return="member/profile/"}
CLIENT LOGIN
<input type="text" onFocus="this.value=''" tabindex="1" style="border:0; color:#666" name="username" value="username" maxlength="32" class="input" size="13" />
<input type="password" onFocus="this.value=''" tabindex="2" style="border:0; color:#666" name="password" value="password" maxlength="32" class="input" size="13" />
<input type="submit" tabindex="3" style="border:0;background:#fe9d01;color:#fff;font-size:10px;padding-left:2px;padding-right:1px;padding-top:1px" value="GO" />
<span class="control2">
<a href="http://{path=member/forgot_password}">Forgot password?</a></span>
{/exp:member:login_form}
{/if}Anyone know a fix?
Thanks,
Redmercer