the features of highly effective forms [smashingconf nyc 2016]

118
THE FEATURES OF HIGHLY EFFECTIVE FORMS Aaron Gustafson @AaronGustafson slideshare.net/AaronGustafson

Upload: aaron-gustafson

Post on 09-Jan-2017

497 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF H I G H LY E F F E C T I V E

FORMSAaron Gustafson @AaronGustafson slideshare.net/AaronGustafson

Page 2: The Features of Highly Effective Forms [SmashingConf NYC 2016]

IConsider the conversation

Page 3: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 4: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 5: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 6: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 7: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 8: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Make every field fight for its place in

your forms.

Page 9: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Perc

enta

ge o

f Use

rs C

onve

rted

0%

5%

10%

15%

20%

25%

30%

Number of Fields1 2 3 4 5 6 7 8 9 10

http://is.gd/field_count_conversion

Page 10: The Features of Highly Effective Forms [SmashingConf NYC 2016]

MICHAEL AAGAARD, UNBOUNCE

I finally convinced the client to let me remove three form fields. I wanted to

remove more, but I could only get away with removing three. But that’s still one

third of the form fields – a lot less friction.

The result? 14% drop in conversion.

http://is.gd/fewer_fields_fewer_conversions

Page 11: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Prepare for pushback.

Page 12: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 13: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 14: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 15: The Features of Highly Effective Forms [SmashingConf NYC 2016]

IIChoose yourwords carefully

Page 16: The Features of Highly Effective Forms [SmashingConf NYC 2016]

HATE SPEECHHARASSMENT

Page 17: The Features of Highly Effective Forms [SmashingConf NYC 2016]

How does this photo make you feel?

� Embarrassing � Upsetting � Saddening � Bad Photo � Other

Page 18: The Features of Highly Effective Forms [SmashingConf NYC 2016]

How does this photo make you feel?

� Embarrassing � Upsetting � Saddening � Bad Photo ◉ Other it’s embarrassing

Page 19: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Please describe the photo

� It’s embarrassing � It’s a bad photo of me � It makes me sad

Page 20: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Talk to your users like they talk

to one another.

Page 21: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Ask higher value questions.

Page 22: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Make it clear users need to respond

Page 23: The Features of Highly Effective Forms [SmashingConf NYC 2016]

“What’s your first name?”

Page 24: The Features of Highly Effective Forms [SmashingConf NYC 2016]

“Without your first name, I won’tknow how to address you.

Could you please provide it?”

Page 25: The Features of Highly Effective Forms [SmashingConf NYC 2016]

“Reserve your spot”

Page 26: The Features of Highly Effective Forms [SmashingConf NYC 2016]

IIIMake goodmarkup choices

Page 27: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Label every field

Page 28: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Who you gonna call? <input name=“calling”>

Page 29: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<label>Who you gonna call?</label> <input name=“calling”>

Page 30: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<label for=“calling”>Who you gonna call?</label> <input id=“calling” name=“calling”>

Page 31: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<label> Who you gonna call? <input name=“calling”> </label>

Page 32: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<label for=“calling”> Who you gonna call? <input id=“calling” name=“calling”> </label>

Page 33: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<label for=“calling”>Who you gonna call?</label> <input id=“calling” name=“calling”>

Page 34: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Use real buttons

Page 35: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Sign In

Page 36: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<input type=“submit” value=“Sign In”>

Sign In

Page 37: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<button type=“submit”>Sign In</button>

Sign In

Page 38: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<a href=“#” class=“button”>Sign In</a>

Sign In

Page 39: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<div class=“button”>Sign In</div>

Sign InSign In

Page 40: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<input type=“submit” value=“Sign In”>

Sign In

Appearance Seen As Focusable Activates Submits Forms

Button Button Yes Yes Yes

Page 41: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<button type=“submit”>Sign In</button>

Sign In

Appearance Seen As Focusable Activates Submits Forms

Button Button Yes Yes Yes

Page 42: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<a href=“#” class=“button” role=“button”>Sign In</a>

Sign In

Appearance Seen As Focusable Activates Submits Forms

Inline Text Link Yes Kinda No

JS dependency

<

JS dependency<

ARIA dependency

<CSS dependency<

Page 43: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<div class=“button” role=“button” tabindex=“0”>Sign In</div>

Sign InSign In

Appearance Seen As Focusable Activates Submits Forms

Block Text Generic No No No

JS dependency

<

JS dependency<

ARIA dependency

<CSS dependency< HTML dependency<

Page 44: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<button type=“submit”>Sign In</button>

Sign In

Appearance Seen As Focusable Activates Submits Forms

Button Button Yes Yes Yes

Page 45: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Use the rightfield type

Page 46: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“calling”>Who you gonna call?</label> <input type=“text” id=“calling” name=“calling”>

Free Response

Page 47: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“calling”>Who you gonna call?</label> <input id=“calling” name=“calling”>

Free Response (is the default)

Page 48: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“email”>What’s Your Business Email Address?</label> <input type=“email” id=“email” name=“email”>

Free Response: Email

Appearance Native Validation Custom Keyboard

Text Field Maybe Maybe

Page 49: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“email”>What’s Your Business Email Address?</label> <input type=“email” id=“email” name=“email”>

Free Response: Email

Appearance Native Validation Custom Keyboard

Text Field Maybe Maybe

Page 50: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Browsers ignore what they don’t

understand

Page 51: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Progressive Enhancement

Page 52: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“url”>What’s Your Website’s URL?</label> <input type=“url” id=“url” name=“url”>

Free Response: URL

Appearance Native Validation Custom Keyboard

Text Field Maybe Maybe

Page 53: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“url”>What’s Your Website’s URL?</label> <input type=“url” id=“url” name=“url”>

Free Response: URL

Appearance Native Validation Custom Keyboard

Text Field Maybe Maybe

Page 54: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“time_at_job”>How Many Years Have You Been in Your Current Position?</label> <input type=“number” id=“time_at_job” name=“time_at_job”>

Free Response: Number

Appearance Native Validation Custom Keyboard

Text Field+ Maybe Maybe

Page 55: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“time_at_job”>How Many Years Have You Been in Your Current Position?</label> <input type=“number” id=“time_at_job” name=“time_at_job”>

Free Response: Number

Appearance Native Validation Custom Keyboard

Text Field+ Maybe Maybe

Page 56: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Choose One

Please describe the photo

� It’s embarrassing � It’s a bad photo of me � It makes me sad

Page 57: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Please describe the photo <label> <input type=“radio” name=“reason” value=“embarrassing”> It’s embarrassing </label> <label> <input type=“radio” name=“reason” value=“bad photo”> It’s a bad photo of me </label> <label> <input type=“radio” name=“reason” value=“saddening”> It makes me sad </label>

Choose One

Page 58: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“reason”>Please describe the photo</label> <select id=“reason” name=“reason”> <option value=“embarrassing”>It’s embarrassing</option> <option value=“bad photo”>It’s a bad photo of me</option> <option value=“saddening”>It makes me sad</option> </select>

Choose One

Page 59: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“reason”>Please describe the photo</label> <select id=“reason” name=“reason”> <option>It’s embarrassing</option> <option>It’s a bad photo of me</option> <option>It makes me sad</option> </select>

Choose One

Page 60: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Radio controls can outperform select

dropdowns byas much as 15%

http://is.gd/radio_vs_dropdown

Page 61: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“volume">How Loud is Spinal Tap?</label> <input type=“range" id=“volume" name=“volume” min=“0” max=“11” step=“1” >

Choose One: Number

Appearance Native Validation Custom Keyboard

Slider (Maybe) Maybe No

Page 62: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“volume">How Loud is Spinal Tap?</label> <input type=“range" id=“volume" name=“volume” min=“0” max=“11” step=“1” >

Choose One: Number

Appearance Native Validation Custom Keyboard

Slider Maybe No

Page 63: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Choose One or More

Page 64: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Gaming Systems (4 available) <label> <input type=“checkbox” name=“reserve[]” value=“DS Lite”> Nintendo DS Lite </label> <label> <input type=“checkbox” name=“reserve[]” value=“Wii”> Nintendo Wii </label> <label> <input type=“checkbox” name=“reserve[]” value=“Vita”> PlayStation Vita </label>

Choose One or More

Page 65: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“gaming”>Gaming Systems (4 available)</label> <select id=“gaming” name=“reserve[]” multiple> <option value=“DS Lite”>Nintendo DS Lite</option> <option value=“Wii”>Nintendo Wii</option> <option value=“Vita”>PlayStation Vita</option> <option value=“360”>Xbox 360</option> </select>

Choose One or More

Page 66: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“gaming”>Gaming Systems (4 available)</label> <select id=“gaming” name=“reserve[]” multiple> <option value=“DS Lite”>Nintendo DS Lite</option> <option value=“Wii”>Nintendo Wii</option> <option value=“Vita”>PlayStation Vita</option> <option value=“360”>Xbox 360</option> </select>

Choose One or More

Page 67: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Gaming Systems (4 available) <label> <input type=“checkbox” name=“reserve[]” value=“DS Lite”> Nintendo DS Lite </label> <label> <input type=“checkbox” name=“reserve[]” value=“Wii”> Nintendo Wii </label> <label> <input type=“checkbox” name=“reserve[]” value=“Vita”> PlayStation Vita </label>

Choose One or More

Page 68: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Don’t introduce unnecessary complexity.

Page 69: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Phone Number:

Page 70: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“tel”>What’s Your Business Phone Number?</label> <input type=“tel” id=“tel” name=“business_phone”>

Free Response: Telephone

Appearance Native Validation Custom Keyboard

Text Field No Maybe

Page 71: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“tel”>What’s Your Business Phone Number?</label> <input type=“tel” id=“tel” name=“business_phone”>

Free Response: Telephone

Appearance Native Validation Custom Keyboard

Text Field No Maybe

Page 72: The Features of Highly Effective Forms [SmashingConf NYC 2016]

We should work harderso our users don’t have to.

Page 73: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“flight”>What flight are you looking for?</label> <input id="flight" name=“flight” pattern=“DL\d{2,}” placeholder=“e.g. DL5407” >

Structured Data: Custom

Page 74: The Features of Highly Effective Forms [SmashingConf NYC 2016]

IVLay out fieldswith purpose

Page 75: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Field & Label Layouts

Label

Label

Label

Label

Label

Page 76: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Field & Label Layouts

Label

Label

Label

Label

Label

Page 77: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Field & Label Layouts

Label

Label

Label

Label

Label

Page 78: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Checkboxes & Radio Controls

� Embarrassing � Upsetting � Saddening � Bad Photo � Other

Page 79: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<fieldset class=“grouped radios”> … <label> <input type=“radio” name=“reason” value=“embarrassing”> It’s embarrassing </label> … </fieldset>

Checkboxes & Radio Controls

� Embarrassing

Page 80: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

.confirmation label,

.radios label,

.checkboxes label { margin: -1em 0; padding: 1em 0; }

Checkboxes & Radio Controls

� Embarrassing

Page 81: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

.confirmation label,

.radios label,

.checkboxes label { margin: -1em 0; padding: 1em 0; }

Checkboxes & Radio Controls

� Embarrassing

Page 82: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

.confirmation label,

.radios label,

.checkboxes label { margin: -1em 0; padding: 1em 0; }

Checkboxes & Radio Controls

� Embarrassing

Page 83: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

.confirmation label,

.radios label,

.checkboxes label { margin: -1em 0; padding: 1em 0; }

Checkboxes & Radio Controls

� Embarrassing

Page 84: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Don’t fall into the custom control trap.

Page 85: The Features of Highly Effective Forms [SmashingConf NYC 2016]

on

Page 86: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 87: The Features of Highly Effective Forms [SmashingConf NYC 2016]

VHelps users avoid (and fix) errors

Page 88: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Let users know when a field is required.

Page 89: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<p>Fields marked with a * are <strong id=“required">required</strong>.</p>

<label for=“first_name”>What’s Your First Name? <b role=“presentation” class=“required”>*</b> </label> <input id="first_name" name=“first_name" required aria-required=“true" >

Required Fields

Page 90: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<p><strong>All of the fields are required.</strong></p>

<label for=“first_name”>What’s Your First Name?</label> <input id="first_name" name=“first_name" required aria-required=“true" >

Required Fields

Page 91: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<p><strong>All of the fields are required.</strong></p>

<label for=“first_name”>What’s Your First Name?</label> <input id="first_name" name=“first_name" required aria-required=“true" >

Required Fields

Page 92: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Provide useful hints as to the type of response you’re

expecting.

Page 93: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“pattern”>Enter three numbers followed by two letters</label> <input id="pattern" name=“pattern” pattern=“\d{3}[a-zA-Z]{2}” placeholder=“e.g. 123ab” >

Suggesting a response

Page 94: The Features of Highly Effective Forms [SmashingConf NYC 2016]

(The placeholder is nota substitute for a label.)

Page 95: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Validatein the browser.

Page 96: The Features of Highly Effective Forms [SmashingConf NYC 2016]

LUKE WROBLEWSKI

Our participants were faster, more successful, less error-prone, and more

satisfied when they used the forms with inline validation.

http://is.gd/inline_form_validation

Page 97: The Features of Highly Effective Forms [SmashingConf NYC 2016]

LUKE WROBLEWSKI

22% increase in success rates 22% decrease in errors made

31% increase in satisfaction rating 42% decrease in completion times

47% decrease in the number of eye fixations

http://is.gd/inline_form_validation

Page 98: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“first_name”>What’s Your First Name?</label> <input id="first_name" name=“first_name" required aria-required=“true" >

Indicate Required Fields

Page 99: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“email”>What’s Your Business Email Address?</label> <input type=“email” id=“email” name=“email”>

Use Native Validation

Page 100: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“flight”>What flight are you looking for?</label> <input id="flight" name=“flight” pattern=“DL\d{2,}” placeholder=“e.g. DL5407” >

Use Custom Validation Schema

Page 101: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 102: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“email”>Your Email Address</label> <input id="email" type="email" name=“email" required aria-required=“true” aria-invalid=“true” aria-describedby=“email-error" > <strong id="email-error" class=“validation-error-message"> Your email address is required</strong>

Provide Inline Error Messages

Page 103: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Validateon the server.

Page 104: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 105: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<input type=“hidden” name=“price” value=“399.99”>

Page 106: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<input type=“hidden” name=“price” value=“1”>

Page 107: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Never trustthe client.

Page 108: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Summarizeserver-side errors.

Page 109: The Features of Highly Effective Forms [SmashingConf NYC 2016]
Page 110: The Features of Highly Effective Forms [SmashingConf NYC 2016]

<div role=“alert”> <p>There were errors with your form submission:</p> <ol> <li><a href="#message">Message</a> is a required field</li> <li><a href="#name">Name</a> is a required field</li> <li><a href="#email">Email</a> is a required field</li> </ol> </div>

Page 111: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<label for=“email”>Your Email Address</label> <input id="email" type="email" name=“email" required aria-required=“true” aria-invalid=“true” aria-describedby=“email-error" > <strong id="email-error" class=“validation-error-message"> Your email address is required</strong>

Provide Inline Error Messages

Page 112: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

<li class="text validation-error"> <!-- field with an error --> </li>

Provide Visual Feedback of Errors

Page 113: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

li.validation-error { color: #922026; } li.validation-error input, li.validation-error select, li.validation-error textarea { border-color: #922026; }

Provide Visual Feedback of Errors

Page 114: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

.validation-error label::before { content: “x "; font-family: Verdana, sans-serif; speak: none; /* The future! */ }

Provide Visual Feedback of Errors

Page 115: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

The Features of Highly Effective Forms๏Consider the conversation ๏Choose your words carefully ๏Make good markup choices ๏Lay out fields with purpose ๏Help users avoid (and fix) errors

159

Page 116: The Features of Highly Effective Forms [SmashingConf NYC 2016]

THE FEATURES OF HIGHLY EFFECTIVE FORMS

Further Reading๏ “Web Form Design” by Luke Wroblewski (Rosenfeld Media) ๏ “An Extensive Guide To Web Form Usability” by Justin Mifsud

https://www.smashingmagazine.com/2011/11/extensive-guide-web-form-usability/ ๏ “Optimizing forms for greater conversions” by Maya Nix

http://blog.usabilla.com/optimizing-forms-greater-conversions/ ๏ “The Definitive Guide to Form Label Positioning” by Jessica Enders

http://www.sitepoint.com/definitive-guide-form-label-positioning/

164

Page 117: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Thank you!

@AaronGustafson aaron-gustafson.com

slideshare.net/AaronGustafson

Page 118: The Features of Highly Effective Forms [SmashingConf NYC 2016]

Questions?

Tweet me at@AaronGustafson