formsVercel
Autocomplete & Names
MUST
MUST: `autocomplete` + meaningful `name`; correct `type` and `inputmode`
Set autocomplete and meaningful name values to enable browser autofill
Bad
Good
Why it matters
Modern browsers can autofill form data, saving users time. Use the autocomplete attribute with standard values like "email", "tel", "street-address", etc. Also use semantic name attributes. This helps password managers and other assistive tools.
References