3.3 Input Assistance: Help users avoid and correct mistakes.
Success Criteria 3.3.2 Labels or Instructions (A)
3.3 Input Assistance: Help users avoid and correct mistakes.
Success Criteria 3.3.2 Labels or Instructions (A)
3.3 Input Assistance: Help users avoid and correct mistakes.
Success Criteria 3.3.2 Labels or Instructions (A)
form fields that are required are indicated to the user as required.
form fields may not be indicated as required.
| Question | Are all required fields indicated to the user as required? |
|---|---|
| PASS | All required fields are indicated to the user as required. |
| FAIL | All required fields are not indicated to the user as required. |
form.form.form fields that are required are indicated to the user as required.<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #246.2 - Negative</title> </head> <body> <form action="http://www.test.com"> <p> <label for="firstname">First Name (required):</label> <input type="text" id="firstname" /><br/> <label for="lastname">Last Name (required):</label> <input type="text" id="lastname" /><br/> <label for="colour">Favourite Colour:</label> <input type="text" id="colour" /><br/> <input type="submit" value="submit"/> </p> </form> </body> </html>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #246.1 - Positive</title> </head> <body> <form action="http://www.test.com"> <p> <label for="firstname">First Name:</label> <input type="text" id="firstname" /><br/> <label for="lastname">Last Name:</label> <input type="text" id="lastname" /><br/> <label for="colour">Favourite Colour:</label> <input type="text" id="colour" /><br/> <input type="submit" value="submit"/> </p> </form> </body> </html>