Form labels (form-label)
Every input element must have a label that is programmatically associated with it.
Missing label for input:
This <input> does not have a label
The (DOM/programmatic) structure of the above example looks like this:
<input type="email" id="email" aria-label="Email" />