Forms: common accessibility issues and ways to avoid them

Forms are fundamental to modern internet-enabled services. They're how we provide or upload information, buy stuff and otherwise make value exchanges with brands and organisations in our daily lives. If they're designed and built to work for all your website visitors, they offer a commercial advantage.

Here are some of the top accessibility issues i've collected in recent years and how you can avoid them. This is not an exhaustive list but I hope it is useful.

Broken labels

Labels tell someone what information to provide for a form input. Generally, visible labels are included in web designs. This means people who can see the screen benefit. But, there is a continuing trend in which labels are not associated with their relevant input in the HTML code. Without this code association people using screen readers, for example, may be unsure what information to provide.

The fix for this is simple. We use the for attribute on the label. The value for the for attribute should be an the value of an id which we add to the relevant input. This creates what is sometimes referred to as a 'programmatic association'. For example:


<label for="first-name">First name</label> 
<input type="text" id="first-name">

One simple way to check this has worked is to click on the label text. If keyboard focus is moved to the adjacent form input, the label has been associated correctly.

It is possible to wrap a label around its input to produce the same result. However, this is shown to cause issues for people using voice recognition software so is not recommended.

Help or error information not announced

When errors are shown on screen we must make sure these are also announced for people using screen reading technology. As with labels, we can make this connection in the code using an attribute whose value is an id we add to the relevant form input. In this case, the attribute is aria-describedby. Here is a code example:


<p class="error" id="error-first-name">Error: please provide your first name</p> 
<input type="text" aria-describedby="error-first-name">

Related form inputs not labelled and grouped

Related inputs such as radio buttons and checkboxes should be grouped together using the fieldset element. The main question or theme for this group should be wrapped by the legend element. In so doing, people using screen readers benefit from the main question being announced automatically — as soon as keyboard focus is moved to the first input in that group.

This technique can be used when a single question is being asked with multiple possible answers or when asking multiple questions about a single thing.

1. Question with multiple possible answers

We might ask, 'How often do you exercise?'

With several radio button options, for example:

2. Multiple questions about the same topic

We might include a section in a form which asks for various bits of information on the same topic. For example, we might ask 'Your address details':

In example 1, if the inputs aren't grouped in a fieldset with a legend, someone using a screen reader will move to the first input and hear something like:

"Never, radio button, 1 of 4".

But with no understanding of which question 'never' refers to as an answer.

In example 2, we may realise we're being asked about address details from context. But we can't be sure which type of address details.

For example, we might have bought a gift but want it to be delivered to friend or family member's address rather than our own. We need to be sure we supply the right information in the right section of the page. Or, it may be we're asked for our billing address and delivery address in the same form. In both cases, we need the question (content within our <legend> element) to be announced.

Length and complexity of forms

It is important to consider the experience of people with cognitive impairments or disabilities. The length and complexity of forms will significantly affect how easy they are for people to complete. Some website visitors are more inclined to become tired, distracted or anxious filling in forms. This is likely to be true, in particular, for autistic users or people with ADHD, to provide a couple of examples.

Only ask necessary questions in forms — don't be tempted to gather as much data as you can, because you think you can!

Write simply, avoid abbreviations, jargon, sayings and idioms.

Help people avoid errors and provide useful ways for people to recover from any errors.

For example, rather than saying 'There is an error', be specific: 'Error: First name is missing'.

Automatic timeouts

Automatic timeouts are a common aspect of form design and are there as a security measure. They also introduce user experience and accessibility issues. There are a few ways the experience can be made a little better, which we'll look at now.

Manage expectations

Warn people their website session will end before it happens and provide enough time for people to read this warning before the session is ended.

Allow people to extend their time

Provide a way for people to stop this timeout process and extend it. Allowing people to extend their visit is now more common (at least in my experience, i'm pleased to say).

Generally a warning message is shown in an overlay pop-up window (modal). These modals tend to include a short message notifying people that they are soon to be timed out and include a button allowing people to extend their visit. These modals, however, are often inaccessible.

Make sure to build or use a robust component for the modal. It should be one that has been tested and proven to be accessible.

The component should be tested to make sure:

Bonus item: low contrast error text

If your error messages are red, be sure to choose a specific accessible shade. Often developers will use red as the color value in website CSS. The issue is the contrast ratio for redis below the 4.5:1 minimum, as required by the Web Content Accessibility Guidelines (WCAG). Make sure you choose a specific shade of red for your error text that is comfortably past the minimum contrast ratio. This should help to ensure your error text can be read easily by a broad group of website visitors.

Further reading

Requirements for providing reasonable time for people to read and interact with content: WCAG Timing Adjustable (2.2.1).

A short guide to designing forms to prevent mistakes - W3C