thor
thor

Reputation: 1358

How do I stop Chrome from pre-populating input boxes?

Is there some way I can stop Chrome from auto populating input boxes? I have a page with a Sign Up form and a Log In form. In Chrome, if a user has already signed up and they've come to this page to log in, the password input box on the sign up form is populated with their password. I would really like to force the sign up fields to never auto complete.

I've tried setting autocomplete="false" but this makes no difference.

Upvotes: 20

Views: 13547

Answers (2)

Tgr
Tgr

Reputation: 28160

You could simply use different field names.

Upvotes: 0

Jim B
Jim B

Reputation: 8574

autocomplete="off" worked on our site.

Upvotes: 24

Related Questions