1

So I've built an 'Edit Personal Information' section on my website that's in development, and it seems that placing form input elements with the names 'email' and 'password' puts forward the Firefox 'Remember Password' prompt upon the form being submitted. This could be misleading due to the fact that users require to input their username to authenticate themselves on the website, not their email.

Is this normal behavior, how could I get around this?

Tommy Plummer
  • 291
  • 2
  • 5
  • 14
  • 1
    possible duplicate of [Input type=password, don't let browser remember the password](http://stackoverflow.com/questions/468288/input-type-password-dont-let-browser-remember-the-password), see also [Disable browser 'Save Password' functionality](http://stackoverflow.com/questions/32369/disable-browser-save-password-functionality) Short answer: `
    ` Another method would be to change the field names, even generate random ones.
    – Wesley Murch Mar 13 '12 at 01:40
  • So I have to ask, if you're asking for a username, why is the field called `email`? – Wesley Murch Mar 13 '12 at 01:45
  • This is the area where they update their information (name, email, address, etc). I ask for the username on login. – Tommy Plummer Mar 13 '12 at 16:27

1 Answers1

2

You want Turn off AutoComplete

     <form name="form1" id="form1" method="post" autocomplete="off"
     action="http://www.example.com/form.cgi">
     [...]
    </form>
Micah Armantrout
  • 6,072
  • 3
  • 33
  • 59