39.ÌýMissing button in form

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:Ìý,Ìý