Building Accessible Forms: 6 Tips

An image of a computer keyboard.


When considering accessibility on your website it’s important to consider your web forms— whether it is a contact form, sign-up form or newsletter form. Accessible forms are important for high conversion, better SEO and user experience. In this article we will look at common mistakes and general tips to be aware of them when creating a form.

The overall goal for a form is one that is complete, easy to understand and navigable with Tab. Be sure to check the Web Accessibility Initiative by W3C guide.

Here is an example Accessible form on Codepen.

Accessible Form

1. Use Input Labels

A form field should have an associated label with them. It is common to see forms where there is no label, just placeholder. placeholder is not enough alone as it disappears as you type. Providing a label, helps users to understand what information is expected in each field. To add a label to your form, use label tag in HTML. The for attribute should always be the same as the id.

<!-- Bad -->
<input type="text" placeholder="Enter your email">

<!-- Good -->
<label for="email">Email:</label>
<input type="text" id="email" name="email" placeholder="Enter your email">

Alternatively, you can use aria-label to identify form controls.

2. Avoid Using Color Alone to Indicate Errors

Relying on color alone (e.g., red text) to indicate errors can be problematic for users with visual impairments. It’s important to provide text or other visual cues in addition to color. For both success and error, a form should display some sort of notification. In the case of an error, an error message should provide clear instructions on how to resolve the error. Ideally, an error message should appear both in the form header and next to the field. An error in the form header can be linked to the problematic field using aria-describedby.

Here is an example:

<div role="alert">
  <h4>There are 1 error in this form</h4>
  <ul>
  	<li>
  		<a href="#firstname" id="firstname_error">
  			The First name field is empty; it is a required field and must be filled in.
  		</a>
  	</li>
  </ul>
</div>


<label for="firstname">First Name:</label>
<input type="text" id="firstname" aria-describedby="firstname_error">

In this example, when a user clicks on the error message in the header, they are navigated to the First Name field. This helps the user understand where the problem is and quickly navigate there.

Client-side validation is another aspect we need to focus on. To add input validation to our form, we use the required HTML attribute.

<label for="name">Name (required): </label>
<input type="text" name="name" id="name" required aria-required="true">

HTML5 comes with input types such as email, password, date, number and more. Whenever possible use <input> types to validate fields.

<input type="date" name="date"/>

3. Getting Tab Order Right

Tab order is crucial for navigating your website with a keyboard. You should be able to navigate both forms and the complete website using only the Tab key. Your tab order needs to be intuitive, logical, and follow the visual flow of the page. Getting keyboard accessibility right is important. Many users navigate web pages using only a keyboard. Incorrect tab placement can confuse users or cause them to miss information on your website.

The tab order is defined using [tabindex] (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex).

To make your forms keyboard accessible, follow these 4 steps:

<label>Fisrt in tab index<input type ="text"></label>
<div tabindex ="0">Second in tab order: tabbable because tabindex was added</div>
<div>Not focusable because no tabindex is added to the div</div>
<button>Third in tab order</button>

4. Use ARIA Roles and States

It is important to tell a screen reader what the purpose and role of a web element is. ARIA annotations is a way to define web elements on a web page. Both HTML and ARIA are used to convert web elements to an accessible alternative format (Braille, text-to-speech). Many of us know HTML, but not ARIA.

📌 It is recommend to use standard HTML elements whenever possible instead of ARIA

ARIA’s main features are roles, properties and states.

Roles: ARIA roles help assistive technologies like screen reader to understand the structure of a page. For example, you can use roles like button, menu, dialog, alert, etc., to provide context about specific elements.

<button aria-label="Close" role="button">X</button>

States: ARIA states describe the current condition or state of an element, and they can change over time based on user interaction. States can be used to communicate information such as whether an element is expanded or collapsed, whether it’s selected, and more.

<div aria-expanded="true">Content is expanded</div>

Properties: ARIA properties are similar to states, but they provide additional information about an element that doesn’t change dynamically. They can be used to convey static information.

<input aria-labelledby="input-label" aria-required="true">
<span id="input-label">Name:</span>

ARIA attributes are especially important for web applications that rely heavily on JavaScript and dynamic content updates. They help ensure that users with disabilities can effectively navigate and interact with your web form. However, you should always use HTML instead of ARIA where appropriate, as [improper implementation of ARIA creates more problems than it solves] (https://webaim.org/projects/million/#aria).

<label>Email address (required): <input type="email" required aria-describedby="email-validation"> <span id="email-validation" class="validation-message">Please provide a valid email address using the format name@place.com</span></label>

5. Include Autocomplete Attribute

Unless you have a reason, make sure to add autocomplete attribute to your form fields. Manually filling forms can be time-consuming and result more errors. Autocomplete helps in to auto-populate fields based on the previous inputs. The Web Content Accessibility Guidelines (WCAG) recommend using autocomplete to improve the overall accessibility of web content.

<form action="/submit" method="post">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name" autocomplete="name">
    
    <label for="email">Email:</label>
    <input type="email" id="email" name="email" autocomplete="email">
    
    <label for="phone">Phone:</label>
    <input type="tel" id="phone" name="phone" autocomplete="tel">
</form>

By providing meaningful values for the autocomplete attribute, you’re guiding the browser to suggest relevant information based on the user’s input history. This helps users, especially those with disabilities, to fill out forms more efficiently and accurately.

6. Don’t use Captcha

According to Builtwith, 96% of the top 1 million websites use captcha. Most of them use reCaptcha and hCaptcha. Visual turing tests such as CAPTCHA are allowed by the Web Content Accessibility Guidelines (WCAG) with some important restrictions.

For example, asking users who are blind, visually impaired or dyslexic to identify textual characters in a distorted graphic is asking them to perform a task they are intrinsically least able to accomplish.

Inaccessible captcha example

WCAG requires that any captcha solution provide an alternative approach to accommodate different disabilities. In addition, all images must have a text alternative that explains the image and a text describing the captcha challenge (what to solve, what to do). In general, image-based captcha puzzles like reCaptcha and hCaptcha should be avoided whenever possible.

Unfortunately, captchas are inaccessible by design. They are designed to prevent bots from submitting a form by obscuring images and text. Even if you use an invisible captcha, it is likely that users will be blocked or asked to solve a puzzle if their IP or browsing behavior is detected as suspicious.

On top of this, captchas can often be a source of cultural misunderstanding. Anyone in UX or Visual Design knows the true difficulty in finding completely universal visual cues for icons. What is a ‘mailbox’ in one country or subculture may look completely different in another. Often captcha visuals are USA-centric which can be frustrating and inefficient for those who’s world looks different.

hCaptcha example

Another problem with captcha solutions is that they require injecting javascript code into your website. This will have a negative impact on page load speed, as we have demonstrated in our performance analysis of reCaptcha and hCaptcha.

One way to make your forms accessible while still having spam and fraud detection is to use server-side solutions like OOPSpam.

Try Our Accessible Captcha Alternative

We designed OOPSpam to be an accessible and privacy-friendly alternative to reCaptcha, hCaptcha and other similar solutions. By design OOPSpam works in your server and never interacts with your visitors. Instead it looks at form message content, IP and email to filter spam and fraud. This approach eliminates the burden on users to prove their humanity and has 0 impact on your website performance. Instead, we allow form submissions without any challenge or puzzle which later are analyzed and categorized as spam or not. Our WordPress plugin does this automatically. Check out other integrations.

I hope this article was helpful for you in creating accessible forms which may be available to everyone.

A cocktail of unique measurements means cutting edge spam protection.

Since our launch in 2017 we’ve been perfecting our API to be the trusted option for small businesses to enterprise— and continue to stick to our values of being the accessibility and privacy-friendly option. Give us a shot!

Try OOPSpam for free → Try our WordPress plugin for free →

✓ No credit card required ✓ Cancel anytime

Enjoy Reading This Article?

Here are some more articles you might like to read next: