{% extends 'base.html' %} {% load static %} {% block content %}

Set Password

Set new password here.

{% include 'partials/_messages.html' %}
{% csrf_token %} {% for fm in form %}
{{fm.label_tag}} {{fm}} {{fm.errors|striptags}}
{% endfor %}
{% if form.non_field_errors %} {% for error in form.non_field_errors %}

{{error}}

{% endfor %} {% endif %}
{% endblock content %}