input:checkbox

Support

Creates a check box control.

The checkbox element allows the user to make multiple selections from a number of options. If you want to prohibit multiple selections, use the input:radio element.

Example

<form method="post" action="#URL#">
<input type="checkbox" name="acceptAgreement" id="acceptAgreement" />
<label for="acceptAgreement">I accept the User Agreement and Privacy Policy</label>
<br /><br />
<input type="submit" value="Register" />
</form>

Preview