label / Critical
The email field needs a name.
A person using a screen reader needs to know what information to enter. The original field had no associated label.
Before
<input id="email" type="email">
After
<label for="email">Your email</label>
<input id="email" type="email" autocomplete="email">
Retest result
The corrected input has the accessible name “Your email”. The label rule no longer fails.