vote up 2 vote down star

If a user saves the password on the login form, ff3 is putting the saved password in the change password dialoge on the profile page, even though its not the same input name as the login. how can I prevent this?

flag

5 Answers

vote up 1 vote down check

Try using autocomplete="off" as an attribute of the text box. I've used it in the past to stop credit card details being stored by the browser but i dont know if it works with passwords. e.g. print("<input type="text" name="cc" autocomplete="off" />");

link|flag
vote up 0 vote down

I think that FF autofills fields based on the "name" attribute of the field so that if the password box has the name="password" and the change password box has the same it will fill in the same password in both places. Try changing the name attribute of one of the boxes.

link|flag
vote up 2 vote down

This is a duplicate of this question.

link|flag
i don't think so. this is a more specific case, which could have password-specific solutions. – magicrobotmonkey Sep 16 '08 at 15:13
vote up 0 vote down

Some sites have 3 inputs for changing a password, one for re-entering the current password and two for entering the new password. If the re-entering input was first and got auto-filled, it wouldn't be a problem.

link|flag
vote up 0 vote down

Go in tools->page properties->security on the page you wish to modify.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.