This “error” probably means that you should add label tags (<label>
) for your input fields.
For example, add an id
attribute to the email <input>
field and then add a <label>
tag with a for
attribute to reference it:
<label for="email">E-Mail</label>
<input id="email" type="email" name="email" ...>
...