Skip to content

Form Label Checker

Paste your HTML form code and get an instant accessibility audit. The tool checks for missing labels, improper label-input associations, missing fieldset/legend groups, and other WCAG 2.1 form accessibility requirements.

Why This Matters

Forms are one of the most common barriers for screen reader users. Unlabeled inputs are announced as 'edit text' or 'blank', making forms impossible to complete. WCAG 2.1 requires accessible labels (3.3.2), proper name-role-value (4.1.2), and error identification (3.3.1).

How to Use This Tool

  1. 1

    Paste form HTML

    Paste your HTML form code including all input, select, and textarea elements.

  2. 2

    Review findings

    The tool checks for missing labels, improper associations, missing fieldset/legend, and more.

  3. 3

    Fix issues

    Each issue includes the WCAG criterion and a suggestion for how to fix it.

Frequently Asked Questions

A <label> element is the preferred method — it creates a visible label and a programmatic association. aria-label provides an accessible name when a visible label isn't possible, but it doesn't create a visible label.

Related Tools