{% extends 'app/base.html' %} {% load static %} {% block title %}Password Reset{% endblock title %} {% block content %}

Reset Password


{% csrf_token %} {% for fm in form %} {{fm.label_tag}} {{fm}} {{fm.errors|striptags}}
{% endfor %}
{% if form.non_field_errors %} {% for err in form.non_fileld_errors %}

{{err}}

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