ux-form-design

Installation
SKILL.md

UX Form Design Skill

Form patterns for data collection, validation, and user feedback. This skill covers accessible form design with custom elements.

Form-Associated Custom Elements

Basic Setup

Important: Store element references during construction - NEVER use querySelector.

class CustomInput extends HTMLElement {
  static formAssociated = true;

  // Direct element references - created in constructor
  #input;
  #label;
  #hint;
  #error;
Related skills

More from matthewharwood/fantasy-phonics

Installs
4
GitHub Stars
1
First Seen
Jan 28, 2026