{% extends 'dashboard/base.html' %} {% block title %}Change password{% endblock %} {% block content %}

Change Password

Update your account password to keep your profile secure.

Password Details

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors|join:", " }}
{% endif %}
{% endfor %}
{% endblock %}