{% extends "base.html" %} {% load django_bootstrap5 %} {% block headline %}Change your password{% endblock %} {% block content %}

Please enter your old and new passwords.

{% csrf_token %} {% bootstrap_form form layout="horizontal" %}
{% bootstrap_button "Change my password" button_type="submit" %} {% url "members:profile" as profile_url %} {% bootstrap_button "Cancel" extra_classes="ms-auto" button_type="link" href=profile_url %}
{% endblock %}