{% extends "base.html" %} {% load tailwind_forms %} {% load i18n %} {% block title %}Change Password ยท {{ site_title }}{% endblock %} {% block content %}
{% csrf_token %} {% if messages %}
    {% for message in messages %} {# if we introduce different levels we can use{% message.level == DEFAULT_MESSAGE_LEVELS.SUCCESS %} #}
  • {{ message }}
  • {% endfor %}
{% endif %}

{% translate "Change password" %}

{% tailwind_formfield form.old_password %} {% tailwind_formfield form.new_password1 %} {% tailwind_formfield form.new_password2 %} {% translate "Cancel" %}
{% endblock %}