{# 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 "User account settings - Projectify" %} {% endblock title %} {% block user_profile_content %}
{% csrf_token %}

{% translate "Update profile" %}

{{ form.profile_picture.as_field_group }} {{ form.preferred_name.as_field_group }} {% include "projectify/forms/submit.html" with text=_("Save changes") %}

{% translate "Update email address" %}

{% trans "Your current email address:" %}

{{ request.user.email }}

{% anchor label=_("Update email address") href="users:update-email-address" %}

{% trans "Other settings" %}

{% anchor label=_("Change password") href="users:change-password" %} {% anchor label=_("Edit third-party account links") href="socialaccount_connections" %}

{% trans "Account deletion" %}

{% trans "If you would like to delete your account, please send us an email using the link below. We have not implemented self-serve account deletion at this point, and would like to apologize for the inconvenience." %}

{% anchor href="mailto:hello@projectifyapp.com?subject=Account+deletion" label=_("Request account deletion (opens email client)") %}
{% endblock user_profile_content %}