{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% trans 'Change password'%}{% endblock %} {% block content %}

{%trans 'Change password' %}


{%trans 'After entering your user data, you can edit your profile information.' %}

{% csrf_token %}
    {% for field in form %}
  • {{ field }}
  • {% endfor %}
{% include 'registration/form_errors.html' %}
{% endblock %}