{% extends "base.html" %} {% block title %} | Change password{% endblock %} {% block main %}

Change password

{% include 'snippets/messages.html' %} {% if form.errors %}
We were not able to change the password: {% if form.oldpassword.errors %}
  • The current password you entered was wrong.
{% endif %} {{ form.password1.errors }} {{ form.password2.errors }}
{% endif %}
{% csrf_token %}
Forgot password?
{% endblock %} {% block libraries %} {% endblock %}