-2

We always see that when we login any page then browser says that remember password or save password.

But I want to change this method. I want that browser will not ask me to save password and password box always should be empty and every time it needs to give password.

enter image description here

Draken
  • 3,049
  • 13
  • 32
  • 49
Md Hannan
  • 11
  • 1
  • you can turn autocomplete feature of the form off which will prevent browser from saving the browser. – Ankit Tanna Jul 21 '16 at 06:39
  • 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) – Draken Jul 21 '16 at 06:49

1 Answers1

1

I think you are talking about autocomplete. You can use

autocomplete="off"

to not see auto suggestion.

example :

<input type="email" name="email" autocomplete="off">
Alimon Karim
  • 3,627
  • 10
  • 37
  • 62