Loading...
Loading...
Form UX patterns, field types, multi-step wizards, and layout. Use when building forms, registration flows, or any data collection interfaces.
npx skill4agent add moderndegree/agent-skills form-design// Visible labels with proper grouping
<form>
<fieldset>
<legend>Personal Information</legend>
<div className="space-y-4">
<div>
<label htmlFor="name">Full Name</label>
<input id="name" />
</div>
<div>
<label htmlFor="email">Email</label>
<input id="email" type="email" />
</div>
</div>
</fieldset>
</form>// Placeholder as label
<input placeholder="Enter your name" />
// No grouping, too many fields
<form>
<input placeholder="Name" />
<input placeholder="Email" />
<input placeholder="Phone" />
<input placeholder="Address" />
<input placeholder="City" />
<input placeholder="State" />
<input placeholder="Zip" />
{/* ... more fields */}
</form>