{# SPDX-FileCopyrightText: 2025 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "user_profile_base.html" %} {% load i18n %} {% load projectify %} {% block title %} {% translate "Change password - Projectify" %} {% endblock title %} {% block user_profile_content %}

{% translate "Change password" %}

{% csrf_token %}
{{ form.current_password.as_field_group }} {{ form.new_password.as_field_group }} {{ form.new_password_confirm.as_field_group }}
{% trans "Rules for choosing a safe password:" %}
{% go_to_action href="users:profile" label=_("Go back") grow=True %} {% include "projectify/forms/submit.html" with text=_("Change password") %}
{% endblock user_profile_content %}