{% extends 'registration_base.html' %} {% block title %}Change Password{% endblock %} {% load crispy_forms_tags %} {% block content %}
{% if form.non_field_errors %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %}

Change Password


{% csrf_token %}
{% for field in form %}
{{ field | as_crispy_field }}
{% endfor %}
{% endblock %}