We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some inputs/fields are not correctly associated with a label which means users with screen readers have no idea what they are.
These inputs fail WCAG Success Criterion: 1.3.1 Info and Relationships 4.1.2 Name, Role, Value
When a user with a screen reader tabs into an input, they should hear its proper label that makes it clear what the purpose of that input/field is.
Fields (if accessible by tabbing through the form at all, which is another issue I'm prepping 😬️) do not give any usable info to screen readers.
/admin/orders have a couple of unlabelled inputs (labels missing for attributes):
for
More robust and free:
OR
label for=
id
An empty output giving users no information:
Correct ANDI output with "Search Order number"
bug-s2/s3 - for users with screen readers
Update all labels with nil values to associate with their respective input's ids. From a cursory look there are 68 label_tag nils
label_tag nil
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Some inputs/fields are not correctly associated with a label which means users with screen readers have no idea what they are.
Accessibility info
These inputs fail WCAG Success Criterion:
1.3.1 Info and Relationships
4.1.2 Name, Role, Value
Expected Behavior
When a user with a screen reader tabs into an input, they should hear its proper label that makes it clear what the purpose of that input/field is.
Actual Behaviour
Fields (if accessible by tabbing through the form at all, which is another issue I'm prepping 😬️) do not give any usable info to screen readers.
Steps to Reproduce
/admin/orders have a couple of unlabelled inputs (labels missing
for
attributes):Testing tools you can use
System ones are OK:
More robust and free:
OR
OR
label for=
assigned to theirid
sScreenshots
An empty output giving users no information:

Correct ANDI output with "Search Order number"

Severity
bug-s2/s3 - for users with screen readers
Possible Fix
Update all labels with nil values to associate with their respective input's ids. From a cursory look there are 68
label_tag nil
sThe text was updated successfully, but these errors were encountered: