Form Guidelines

Creating effective forms requires balancing user needs with business requirements. Follow these principles to design forms that are accessible, efficient, and user-friendly.

Form inputs should have a fixed min-height of 48px to ensure adequate touch targets and accessibility compliance.

Keep forms short and simple

Avoid overwhelming users with excessive fields. For complex forms, use progressive disclosure to break information into manageable chunks and reduce cognitive load.

input 1

 

Ensure proper tab navigation

Design intuitive keyboard navigation that follows the visual sequence of form elements, essential for accessibility and keyboard-only users.

form2

 

Use single column layouts

Single column layouts are easier to navigate and reduce the chance of users missing important fields whilst streamlining information flow.

form3

 

Highlight optional fields, not required ones

Mark optional fields as "(optional)" instead of highlighting required ones. This approach assumes all fields are required unless stated otherwise.

form4

 

Use descriptive labels and helpful error messages

Provide clear labels that explain expected input. Use specific, user-friendly error messages that guide users to correct issues without technical jargon.

form5

 

Offer real-time validation

Provide immediate feedback as users complete fields to help them correct errors during input rather than after submission.

form6

 

Show inline error messages after submission

Display inline error messages after form submission as an additional safety net for any overlooked errors during initial input.

form7

 

Limit placeholder usage

Use placeholder text sparingly and only to indicate expected input format, e.g. dates or phone numbers, as it can be confusing if misused.

form8

 

Use single text inputs for birthdays

A single text inputs with format placeholder is more user-friendly than dropdowns or date pickers for birthday input.

form9

 

Avoid 'Reset' and 'Clear' buttons

These buttons can cause accidental data loss and user frustration. Most users expect their input to be preserved.

form10

 

Show loading feedback and disable forms

Display loading animations on buttons and disable form elements during processing to provide visual feedback and prevent user changes.

form11