-
Notifications
You must be signed in to change notification settings - Fork 46
Some form elements are missing labels #192
Copy link
Copy link
Open
Labels
Description
All form elements should have labels, but some do not. For example, the "title" field in https://opendsa-server.cs.vt.edu/configurations/book is missing a label.
To solve this problem, you need to fix at least (1) of the following:
- Element does not have an implicit (wrapped)
- Element does not have an explicit
- aria-label attribute does not exist or is empty
- aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty
- Element has no title attribute
- Element has no placeholder attribute
- Element's default semantics were not overridden with role="none" or role="presentation"
Reactions are currently unavailable