Form labels (form-label)
Every input element must have a label that is programmatically associated with it.
Label not associated with input:
This <input> has a <label>, but it is not associated with the input field using the for-attribute
Structure of the above example looks like this:
<label>Email</label>
<input type="email" id="email" aria-label="Email" />
<input type="email" id="email" aria-label="Email" />