Form inputs missing autocomplete attribute: what it is, why it matters, and how to fix it
Form input fields do not have the autocomplete attribute, preventing browsers from offering to auto-fill form data.
Where this fits: accessibility in SEO
Why form inputs missing autocomplete attribute hurts your rankings
WCAG 1.3.5 requires input purpose to be programmatically determined for inputs collecting user information. The autocomplete attribute helps browsers auto-fill forms, which is essential for users with cognitive disabilities, motor impairments, or anyone who benefits from reduced typing. It also improves form conversion rates.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Add appropriate autocomplete values to form inputs based on the data they collect (e.g., 'name', 'email', 'tel', 'street-address', 'postal-code').
<input type="email" name="email" autocomplete="email">
<input type="tel" name="phone" autocomplete="tel">Frequently asked questions
What does "Form inputs missing autocomplete attribute" mean?
Form input fields do not have the autocomplete attribute, preventing browsers from offering to auto-fill form data.
Why does form inputs missing autocomplete attribute matter for SEO?
WCAG 1.3.5 requires input purpose to be programmatically determined for inputs collecting user information. The autocomplete attribute helps browsers auto-fill forms, which is essential for users with cognitive disabilities, motor impairments, or anyone who benefits from reduced typing. It also improves form conversion rates.
How do I fix form inputs missing autocomplete attribute?
Add appropriate autocomplete values to form inputs based on the data they collect (e.g., 'name', 'email', 'tel', 'street-address', 'postal-code').
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the accessibility family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects form inputs missing autocomplete attribute on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by form inputs missing autocomplete attribute, and hands you a ready-made fix task.
Check my site free