up vote 2 down vote favorite
share [g+] share [fb]

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?

link|improve this question
feedback

4 Answers

up vote 2 down vote accepted

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown