The Form landmark is missing in a region of the page that operates as a Form.
| Field | Value |
|---|---|
| Rule code | Manual_FormLandmark_Missing |
| WCAG conformance level | A |
| WCAG success criterion | 1.3.1 Info and Relationships |
| Must be fixed at source | No |
Description
A form landmark is missing in a region that operates as a form, which is essential for providing a clear structure for users, particularly those using assistive technologies. Landmarks help users navigate the page more efficiently by identifying regions such as navigation, main content, and forms.
How to fix
Add a form landmark using <form> or <div role="form"> to define the form region on the page. For example: <form> <label for="email">Email</label> <input id="email" type="email" /> ... </form>.