Web accessibility service pageWeb accessibility service page

10.3:H210102 Ensure proper positioning of label form control and explanation of the control.

Improper design

No explanation for the table form was provided, users have no idea if the information they provided were acceptable. The improper example below only have text acting as the explanation for the table form control.

Improper design:

<FORM action="customer" method="post">
 Birth date:
<INPUT  type="text" id="birth" value="please fill in your birth date">
</FORM>

Proper demonstration

The control form gathered all items of the form, in order to allow users to select and fill in accurately, one should provide text explanation on the control form for next movement information.

Proper example:

<FORM action="customer" method="post">
<LABEL for="birth">birth date:</LABEL>
<INPUT type="text" id="birth" value="please fill in your birth date">
</FORM>
          
End of Main Content