{# SPDX-FileCopyrightText: 2025 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "user_base.html" %} {% load i18n %} {% block title %} {% translate "Email address confirmed - Projectify" %} {% endblock title %} {% block user_content %}
{% if email_error or token_error %}

{% trans "Error while confirming email address" %}

{% trans "Unfortunately your email address could not be confirmed." %}

{% if email_error %}

{% blocktrans %}Error with email address: {{ email_error }}{% endblocktrans %}

{% endif %} {% if token_error %}

{% blocktrans %}Error with token: {{ token_error }}{% endblocktrans %}

{% endif %} {% trans "Contact support" %}
{% else %}

{% trans "Email address confirmed" %}

{% trans "Your email address was confirmed successfully. You may now proceed to log in." %}

{% trans "Continue to log in" %}
{% endif %}
{% endblock user_content %}