I am using the simplest of HTML 5 forms, and wish to use the 'required' attribute for the checkbox to make sure the user clicks it when submitting the form.
Should I have some server side validation - in case somebody is using a browser that doesn't support html5?
More Information:
My form looks like this:
[] I accept the terms and conditions
Submit
Code:
<input type="checkbox" required> I accept the terms and conditions<br />
<input type="submit" value="submit"/>