Last active
December 26, 2019 19:23
-
-
Save UnderlineWords/b262d8432046d8de376db0a9e7bcd271 to your computer and use it in GitHub Desktop.
How to disable autocomplete for password and email / username inputs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion | |
--> | |
<input type="email" autocomplete="new-email"> | |
<input type="password" autocomplete="new-password"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment