Accessibility: label for and input id do not match
-
The label’s for attribute does not match the input’s id. They should match according to WCAG standards: https://www.w3.org/TR/WCAG20-TECHS/H44.html
<label for="email">Email Address or Username</label> <input type="text" name="somfrp_user_info" id="somfrp_user_info" class="user-success">
So either the label’s for atrribute or the id of the input type should be updated.
The page I need help with: [log in to see the link]
- The topic ‘Accessibility: label for and input id do not match’ is closed to new replies.