I have the following test page in my asp.net site:
<html>
<body>
<form autocomplete="off">
<input type="password" name="password" autocomplete="new-password">
</form>
</body>
</html>
Despite of autocomplete
being off
for the form and new-password
for the password field, Chrome 63.0.3239.132 Windows still shows a dropdown with a list of users to choose a password from.
According to this, the above should be enough to disable password autocomplete. How can I disable password autocomplete?