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

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -