{% extends 'base.html' %} {% block title %}Change Password - PixelMinds{% endblock %} {% block content %}

Change Password

{% csrf_token %} {% if form.non_field_errors %} {% endif %} {% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}