TexasDigitalLibrary / Vireo

Vireo is a turnkey Electronic Thesis and Dissertation (ETD) Management System.
https://texasdigitallibrary.atlassian.net/wiki/spaces/VUG/pages/87490642/About
GNU General Public License v2.0
46 stars 35 forks source link

Check label elements for inconsistencies and correct associations #1668

Open cstarcher opened 1 year ago

cstarcher commented 1 year ago

Relevant Components

Description The labeling of the inputs on this page is inconsistent. There is a

Use <label> with an attribute “for” listing the id of the associated input.

Current Code

<label>
  text
</label>
...
<input>

Solution Make sure labels are programmatically associated with the input for which they are intended to provide information. Recommended Code

<label for="id">
  text
</label>
...
<input id="id">
jcreel commented 1 year ago

Deliverable for spike: Survey, determine feasibility, decompose, and size task of providing ids for inputs and remediating all the label associations.