javascript - How do I disable browser's "save your password" option from my website's users? -


i have login this:

enter image description here

as see, username , password saved in inputs. want know, possible disable saving password property of browser js or html or whatever?


note: using autocomplete attribute isn't useful that:

<form autocomplete="off" ...>     <input name="username" placeholder="email" type="email" autocomplete="off" /> </form> 

as see, both form , input have autocomplete="off" attribute, still saving password happens.


Comments

Popular posts from this blog

ios - Is 'init' forbidden as *part* of a variable name? -

c# - Get the Class name in a class with atribute inside a attribute method -

file - Python: AttributeError: 'str' object has no attribute 'readlines' -