javascript - How do I disable browser's "save your password" option from my website's users? -
i have login this:
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
Post a Comment