Start scanning free

( Understandable / WCAG 3.3.3 )

Error message does not explain how to fix input

This check maps to Error Suggestion. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Serious Level AA WCAG 3.3.3 — Error Suggestion

What’s wrong

An error message is shown but it does not tell the user what change is needed.

Why it matters

People with cognitive disabilities and screen reader users need specific recovery steps. Generic errors force repeated trial and error.

How to fix it

Use semantic HTML and valid ARIA so assistive technology gets the same state and structure as sighted users. Keep labels and states explicit in markup.

Before
<p id="password-error">Invalid password.</p>
After
<p id="password-error">Password must be at least 12 characters and include a number.</p>

If this pattern is generated by a component, fix it once in the shared component so every instance inherits the accessible behavior.

Learn more