• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4453 shaares
2 / 3
Filters
47 results tagged forms

Why the GOV.UK Design System team changed the input type for numbers - Technology in government

QRCode

We take a look at why the GOV.UK Design System changed the element it uses for inputting numbers, making it more accessible and easier to use.

Using <input type="text" inputmode="numeric" pattern="[0-9]*"> allows for a degree of separation between how the user enters data (“input mode”), what the browser expects the user input to contain (type equals number), and potentially how it tries to validate it.

https://technology.blog.gov.uk/2020/02/24/why-the-gov-uk-design-system-team-changed-the-input-type-for-numbers/
September 17, 2021 at 1:31:57 PM EDT *
forms webdesign mobile
FILLER

How To Use Help Elements To Improve Your Designs — Smashing Magazine

QRCode

When designing a website, the most important thing is to make it as usable and convenient as possible. On a website on which users could possibly get confused, it is best to include help elements. Help elements come in all different shapes and sizes: an entire page, a suggestion box or a quick tip. But they all have one thing in common: besides doing the obvious (i.e. helping the user), help elements provide an extra convenience that brings the website closer to that sought-after usability.

https://www.smashingmagazine.com/2009/04/help-elements-design-showcase/
May 28, 2021 at 7:29:28 PM EDT *
webdesign design forms
FILLER

Checkboxes make excellent buttons | Christian Heilmann

QRCode

I like to use checkboxes as buttons. And here’s how.

A checkbox is a binary state. It is checked or not. So instead of reading out the state in an event handler, I tend to read the checked property.

https://christianheilmann.com/2020/09/24/checkboxes-make-excellent-buttons/
October 5, 2020 at 11:52:06 AM EDT *
checkbox forms webdesign
FILLER

What to Use Instead of Number Inputs

QRCode

Hanna Laakso documents the problems for GOV.UK. This is what they landed on:

 <input type="text" inputmode="numeric" pattern="[0-9]*">

The inputmode attribute is pretty great, and we have a deep dive on that.

Phil Nash came to (almost) same exact conclusion, and blogged about improving the experience of a two-factor auth code input on the Twilio blog:

<input
  type="text"
  name="token"
  id="token"
  inputmode="numeric"
  pattern="[0-9]*"
  autocomplete="one-time-code"
/>

That last attribute is interesting and new to me. It means you get this super extra useful experience on browsers that support it:

https://css-tricks.com/what-to-use-instead-of-number-inputs/
June 4, 2020 at 1:49:54 PM EDT *
css webdesign forms
FILLER

Stop using Material Design text fields! - Matsuko Friedland

QRCode

Note: Although it is common on the web, and is in some of the images below, you should never make visible form fields without a visible label.

https://www.matsuko.ca/blog/stop-using-material-design-text-fields/
March 13, 2020 at 2:30:53 PM EDT *
forms webdesign
FILLER

The Evolution of Material Design’s Text Fields - Google Design - Medium

QRCode

The results of the two studies showed that these elements of text fields were of most value:

  • Enclosed text fields with a rectangular (box) shape performed better than those with a line affordance
  • The text field box should be represented with a semi-transparent fill and a bottom line or with a fully transparent fill and an opaque stroke.
  • Color contrast of the text field’s lines or strokes met the minimum 3:1 contrast ratios with the background
  • Label text should be placed within the bounds of the text field box
  • Text fields should have rounded corners
https://medium.com/google-design/the-evolution-of-material-designs-text-fields-603688b3fe03
November 5, 2019 at 2:43:18 PM EST *
webdesign styleguide forms
FILLER

You probably don’t need input type=“number”

QRCode

Time and time again, it seems like reaching for input type="number" is a good idea, but it almost always isn’t. While input type="number triggers numeric keyboards on touchscreens leading to better mobile UX, that can also be accomplished by configuring the pattern attribute in a certain way (Zach Leatherman has a great deep dive post into all of this).

http://bradfrost.com/blog/post/you-probably-dont-need-input-typenumber
April 25, 2019 at 4:11:24 PM EDT *
webdesign forms
FILLER

The Best Place for Error Messages on Forms

QRCode

User Preference of Error Message Locations

Users rated which error message location they found most satisfying. There was a strong user preference and expectation for right of the field placement.

Error messages placed to the left of the field were rated the worst. Error messages placed above the field caused the highest cognitive load followed by error messages below the field.

http://uxmovement.com/forms/the-best-place-for-error-messages-on-forms/
May 16, 2018 at 7:15:52 AM EDT *
forms webdesign
FILLER

Better Form Design: One Thing Per Page (Case Study)

QRCode

In 2008, I worked on Boots.com. They wanted a single-page checkout with the trendiest of techniques from that era, including accordions, AJAX and client-side validation.

Each step (delivery address, delivery options and credit-card details) had an accordion panel. Each panel was submitted via AJAX. Upon successful submission, the panel collapsed and the next one opened, with a sliding transition.

https://www.smashingmagazine.com/2017/05/better-form-design-one-thing-per-page/
May 23, 2017 at 11:10:24 AM EDT *
forms webdesign
FILLER

Toolbar

QRCode
http://codepen.io/cameronbaney/details/Drjxe/
December 6, 2016 at 3:02:31 PM EST *
css webdesign forms buttons
FILLER

Links vs. Buttons in Modern Web Applications

QRCode

Something that comes up again and again in front-end accessibility is the issue of links versus buttons. You know, the HTML elements that open links in new windows or submit forms?

https://marcysutton.com/links-vs-buttons-in-modern-web-applications/
August 22, 2016 at 10:02:56 AM EDT *
forms webdesign
FILLER

Contact Form

QRCode

A simple and easy to customize contact form.

https://codyhouse.co/gem/css-contact-form/
August 21, 2016 at 8:16:21 AM EDT *
webdesign forms patterns
FILLER

Float labels with css

QRCode
https://css-tricks.com/float-labels-css/
August 20, 2016 at 4:37:33 PM EDT *
forms webdesign
FILLER

Ed Knittel's Form-O-Matic™ - tastypopsicle.com

QRCode
http://www.tastypopsicle.com/formomatic/
February 12, 2012 at 8:35:25 AM EST *
forms webdesign
FILLER

Why Your Form Buttons Should Never Say Submit - UX Movement

QRCode
http://uxmovement.com/forms/why-your-form-buttons-should-never-say-submit
February 17, 2011 at 10:59:00 AM EST *
webdesign forms
FILLER

jQuery Form Plugin

QRCode
http://jquery.malsup.com/form/
February 17, 2011 at 9:09:30 AM EST *
forms jquery
FILLER

Getting started / Learn - Validatious 2.0

QRCode
http://validatious.org/learn/getting_started
November 3, 2009 at 9:49:05 AM EST *
javascript forms
FILLER

24 Essential Submit Button Enhancements | tripwire magazine

QRCode
http://www.tripwiremagazine.com/design/css-techniques/24-essential-submit-button-enhancements.html
June 4, 2009 at 8:54:46 AM EDT *
css webdesign forms
FILLER

Post/Redirect/Get - Wikipedia, the free encyclopedia

QRCode
http://en.wikipedia.org/wiki/Post/Redirect/Get
October 1, 2008 at 8:56:46 AM EDT *
webdesign forms security
FILLER

Particletree » 10 Tips To A Better Form

QRCode
http://particletree.com/features/10-tips-to-a-better-form/
June 13, 2007 at 2:52:59 PM EDT *
css forms tips webdesign
FILLER
2 / 3
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community