Missing Form Submit Button Check

RuleSets of AccessMonitor - the validator of web accessibility practices

Missing Form Submit Button Check

Description

The “Missing Form’s Submit Button Check” evaluates whether there is any <form> element Without a control (such as a submit button) that allows users to submit their input.

Example outcome

I identified 1 form without the button to submit the data to the server.

Impact

Fixes

To address missing submit buttons on forms:

  1. Locate the <form> element missing a submit button.
  2. Add a valid submit control (e.g., <button type="submit"></code> or <input type="submit" value="Send">).

Resources