{% extends 'layouts/auth_base.html' %} {% load static %} {% block content %}
Enter new password here.
{% csrf_token %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% for field in form %}
{{field}}
{{ field.errors }} {% endfor %}

Back to home

{% endblock content %}