39. Missing button in form

3.2.2

missing button incorrect example

Description: The page contains a form but there is no submit button.

Context: Any form should contain a way to submit directly within the form. If this is not the case, the best approach is most likely to re-organize the content itself to generate a cohesive form.

<form name="form17" id="form17">
    <!--Content-->
</form>

How to fix it: The form should be provided with a submit button to maximize predictability.

<form name="form17" id="form17">
    <!--Content-->
    <button type="submit">Submit</button>
</form>

Techniques: ARIA4H32