-1

Hello autocomplete on google chrome doesn't work for me. What is another way to turn off autocomplets for password field ?? I am using Vue

TEtet
  • 89
  • 1
  • 5
  • Hello @TEet, please read carefully this [post](https://stackoverflow.com/help/how-to-ask) and don't write a question with a chat syntax. – Tinwor Apr 13 '20 at 18:20

1 Answers1

0

you have to use "form" tag in your form field and set autocomplete for both of form and password input tags.

<form action="" autocomplete="off">
  <label for="username">username:</label>
  <input type="text" id="username" name="username"><br><br>
  <label for="pass">Last name:</label>
  <input type="password" id="pass" name="pass" autocomplete="off"><br><br>
  <input type="submit">
</form>