Pattern: Invalid autocomplete value
Issue: -
The autocomplete attribute on form inputs must use valid values from the HTML specification. Invalid values can decrease accessibility and prevent browsers from properly assisting users with form completion.
Example of incorrect code:
<input autocomplete="user-name" />
<input autocomplete="random" />
<input autocomplete="email-address" />
Example of correct code:
<input autocomplete="name" />
<input autocomplete="email" />
<input autocomplete="street-address" />