I have the following test page on my asp.net website:
<html>
<body>
<form autocomplete="off">
<input type="password" name="password" autocomplete="new-password">
</form>
</body>
</html>
Despite the fact that autocomplete offfor the form and new-passwordfor the password field, Chrome 63.0.3239.132 Windows still shows a drop-down list with a list of users to select a password.
According to this , this was enough to disable password auto-completion. How to disable password auto-completion?
source
share