The Published and Unpublished radio buttons included in the Nominate Collections form do not have accessible names
page: https://dlg.usg.edu/participate/nominate
recommendation: A label is important for everyone to understand the purpose of a form field. Labels should describe the purpose of the input and give the person completing the form some idea of what the enter in the field. Refer to this W3C technique article for more information about input labels, "Using label elements to associate text labels with form controls" - https://www.w3.org/WAI/WCAG22/Techniques/html/H44 In this instance there are labels for the radio button elements but the value in the for attribute included on them do not match the id attributes of the radio buttons. Recommend correcting the values so they match appropriately. Suggest: <div class="form-group"> <label for="publication_status_published">Publication Status</label> <p>What is the publication status of the materials?</p> <input type="radio" name="publication_status" id="publication_status_published" value="published" data-gtm-form-interact-field-id="1"> <label for="publication_status_unpublished">Published</label> <input type="radio" name="publication_status" id="publication_status_unpublished" value="unpublished" data-gtm-form-interact-field-id="0"> <label for="publication_status">Unpublished</label> </div>