CSU H44b

Each form field must have a label element with unique ID's and matches all controls.

Example:

<label for="student">student</label>

<input id="student" type="radio" value="student" name="Status" /><br />

<label for="staff">staff</label>

<input id="staff" type="radio" value="staff" name="Status" /><br />

<input type="submit" value="Submit" />