AVT- Fieldsets must have a single, non-empty legend.

Summary

Fieldsets must have a single, non-empty legend.

Steps to reproduce

GitLab->Project->Details

What is the expected correct behavior?

The LEGEND of a FIELDSET provides a label or instructions for the group of controls. This label helps users to understand that the controls are related, and is especially important for users of assistive technologies.

Possible fixes

The first element of a FIELDSET must be a LEGEND, which describes the group of logically related input elements contained in the FIELDSET. For example:

  <FIELDSET>
    <LEGEND>Personal Information</LEGEND>
    <LABEL for="fn1">First Name</LABEL>
    <INPUT type="text" name="firstname" id="fn1"><BR>
    <LABEL for="ln1">Last Name</LABEL>
    <INPUT type="text" name="lastname" id="ln1">
  </FIELDSET>

Relevant screenshots

@sharonchen carmacleod

Edited by 🤖 GitLab Bot 🤖