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.
<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>