Fix · Serious · cited in audits
How to fix: form fields without labels
Screen readers announce "edit text, blank" with no idea what to enter. Every form input needs a programmatic label. Placeholders disappear when typing — they are not labels.
- WCAG references
- 3.3.2, 1.3.1, 4.1.2
- Severity
- Serious
What it looks like in the wild
Screen readers announce "edit text, blank" with no idea what to enter.
The screen-reader user, keyboard user, or low-vision user encountering this issue does not get an error message. The page just stops working for them. Which is why this kind of bug rarely shows up in your error tracker; it shows up in support tickets, lawsuits, and abandoned conversions.
Why it fails WCAG
Every form input needs a programmatic label. Placeholders disappear when typing — they are not labels.
Map this back to 3.3.2, 1.3.1, 4.1.2 when you log the bug. Auditors and procurement teams expect that mapping; "broken" is not enough context.
The wrong pattern (avoid)
<input type="email" placeholder="Your email">The right pattern (copy this)
<label for="email">Email address</label>
<input id="email" type="email" autocomplete="email">Notes from real audits
Visible labels reduce form errors for everyone, not just AT users.
Use aria-label only when a visible label is impossible (e.g. icon-only search).
Related fixes
How to fix: missing alt text on images
1.1.1
How to fix: low color contrast
1.4.3, 1.4.11
How to fix: missing H1 / wrong heading order
2.4.6, 1.3.1
How to fix: missing skip-to-main-content link
2.4.1
WCAG 1.3.1 — Info and Relationships
The visual structure of a page (headings, lists, tables, form labels) must also be availab
WCAG 3.3.2 — Labels or Instructions
Labels or instructions must be provided when content requires user input.
WCAG 4.1.2 — Name, Role, Value
For every UI component, the name, role, and state (and any value where applicable) must be
All fix recipes
Browse fixes by severity
Find every accessibility issue on your site in 60 seconds.
Free public scan. No card. AI-generated fixes for every issue we find.