0

hello the autocomplete=off doesn't work in chrome To disable autocompletion in forms, you can set the autocomplete attribute to "off": but i tried "nope" / "fake" / "random" but not working it work only to captcha input

chaima
  • 21
  • 3

1 Answers1

0
<input type="password" name="whatever" autocomplete="new-password" />

This will get you close to what you are trying to do, but Chrome seemingly is trying to make it as hard as possible to control the behavior in your site. So there are quite a few ways to have this not act as intended.

the_legitTDM
  • 346
  • 4
  • 20