html5 - Why is the password input field auto populated? -
i have strange behaviour of password input field. when page loaded, first instance of password input field populated.
the second password input field, added testing, not automatically populated. if change first password input type password
text
, not automatically populated.
there no js populates field (that can find).
the code new password
input fields are:
<input class="form-control" name="user[pass]" type="password" value="" placeholder="new password" autocomplete="off" /> <input class="form-control" name="user[pass]" type="password" value="" placeholder="new password" autocomplete="off" />
the solution can think of now, add dummy input field before new password
, hide it.
has experienced this?
update
- seems problem in firefox
- if open new "private browser window", problem goes away. because window not save cache.
so if firefox password caching problem, then
a) why populate password field? happens when enter username in login form,
b) how can prevent it?
it happened me after installed password-manager: when there password field auto-generates 'secure' password me. try disabling browser extensions or use different browser , see if solves problem.
Comments
Post a Comment