On line 40: ``` {% if form.email.errors %} <ul class="errors"> {% for error in form.password.errors %} <li>{{ error }}</li>{% endfor %} </ul> {% endif %} ``` the if check should be: `{% if form.password.errors %}`
On line 40:
the if check should be:
{% if form.password.errors %}