Turn off auto complete in FireFox
I believe that Firefox autocomplete uses the field name as the key for the data (unless it has changed recently) which means that if you inadvertently enter your password as your username (easily done) then that will be used next time.
I don't think I disagree, but believe that we're talking about two different things. It's explicitly the concept of "saving login credentials" which would be inspecting the relationship between the password fields and what might be designated as the username field. And not the general autocomplete behavior which deals in many other fields besides just "password and username" for the purpose of saving login credentials.
/styles/prosilver/template/ucp_register.html
into my own style's /template
directory, and then edit this ucp_register.html to move the <dl>
block containing the email entry field down below the two password entry fields. And then re-ordered the tabindex=
values of those four fields to reflect the new on-screen order.Code: Select all
<!-- EVENT ucp_register_credentials_before -->
<dl>
<dt><label for="username">{L_USERNAME}{L_COLON}</label><br /><span>{L_USERNAME_EXPLAIN}</span></dt>
<dd><input type="text" tabindex="1" name="username" id="username" size="25" value="{USERNAME}" class="inputbox autowidth" title="{L_USERNAME}" /></dd>
</dl>
<dl>
<dt><label for="new_password">{L_PASSWORD}{L_COLON}</label><br /><span>{L_PASSWORD_EXPLAIN}</span></dt>
<dd><input type="password" tabindex="3" name="new_password" id="new_password" size="25" value="{PASSWORD}" class="inputbox autowidth" title="{L_NEW_PASSWORD}" autocomplete="off" /></dd>
</dl>
<dl>
<dt><label for="password_confirm">{L_CONFIRM_PASSWORD}{L_COLON}</label></dt>
<dd><input type="password" tabindex="4" name="password_confirm" id="password_confirm" size="25" value="{PASSWORD_CONFIRM}" class="inputbox autowidth" title="{L_CONFIRM_PASSWORD}" autocomplete="off" /></dd>
</dl>
<dl>
<dt><label for="email">{L_EMAIL_ADDRESS}{L_COLON}</label></dt>
<dd><input type="email" tabindex="5" name="email" id="email" size="25" maxlength="100" value="{EMAIL}" class="inputbox autowidth" title="{L_EMAIL_ADDRESS}" autocomplete="off" /></dd>
</dl>
<!-- EVENT ucp_register_credentials_after -->