--- id: Bbeierle12/Skill-MCP-Claude/form-accessibility version: "63c61e0e" license: MIT install: manual updated: 2026-07-27 --- # form-accessibility — Master accessible form design by implementing WCAG 2.2 AA standards, semantic HTML, and ARIA attributes that work across assistive technologies. Learn keyboard navigation patterns, error handling, and validation techniques that ensure your forms remain usable for everyone, regardless of ability or device. Publisher: Bbeierle12 · Stars: 8 · Updated: 2026-07-27 Install (manual): `git clone https://github.com/Bbeierle12/Skill-MCP-Claude` ## SKILL.md # Form Accessibility WCAG 2.2 AA compliance patterns for forms. Ensures forms work for keyboard users, screen reader users, and users with cognitive or motor disabilities. ## Quick Start ```tsx // Accessible form field pattern
{/* 1. Visible label (never placeholder-only) */} {/* 2. Hint text (separate from label) */} We'll send your confirmation here {/* 3. Input with full ARIA binding */} {/* 4. Error message (announced by screen readers) */} {hasError && ( Please enter a valid email address )}
``` ## WCAG 2.2 Form Requirements ### Critical Criteria | Criterion | Level | Requirement | Implementation | |-----------|-------|-------------|----------------| | 1.3.1 Info & Relationships | A | Structure conveyed programmatically | `