Answers for "how to disable autofill in input"

0

disable html form input autocomplete autofill

<form autocomplete="off">
  <input type="text" name="username" autocomplete="off" />
  <!--OR-->
  <input type="text" name="email" autocomplete="off" />
  
  <input type="password" name="password" autocomplete="new-password" />
</form>
Posted by: Guest on March-14-2022
2

chrome input disable autofill

Do autocomplete="new-password" to disable autocomplete.
Posted by: Guest on March-16-2022

Browse Popular Code Answers by Language