Form labels (form-label)
Every input element must have a label that is programmatically associated with it.
Incorrect for/id pairing:
This label has incorrect for/id pairings:
The (DOM/programmatic) structure of the above input field & its corresponding label looks like this:
<label for="wrong-id" id="email-label">Email</label>
<input type="email" id="email-input" aria-labelledby="email-label" />
<input type="email" id="email-input" aria-labelledby="email-label" />