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:听,听