{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2025-2026 JWP Consulting GK #} {% extends "storefront_base.html" %} {% load projectify %} {% block storefront_content %}

User app test views

You can test Projectify user app features using the buttons below.

Authentication status

{% if user.is_authenticated %} You are currently logged in. {% else %} You are currently logged out. {% endif %}

Available test views

Email confirmation test

Test email confirmation feature. Note: You must log out first

{% if user.is_authenticated %} {% anchor label="Log out first" href="users:log-out" %} {% else %}
{% csrf_token %} {% include "projectify/forms/submit.html" with text="Go to Email Confirmation Test" %}
{% endif %}

Email address update confirmation test

Test email address update confirmation feature. Note: You must log in first

{% if user.is_authenticated %}
{% csrf_token %} {% include "projectify/forms/submit.html" with text="Go to Email Update Confirmation Test" %}
{% else %} {% anchor label="Log in first" href="users:log-in" %} {% endif %}

Password reset confirmation test

Test password reset confirmation feature. Note: You must log out first

{% if user.is_authenticated %} {% anchor label="Log out first" href="users:log-out" %} {% else %}
{% csrf_token %} {% include "projectify/forms/submit.html" with text="Go to Password Reset Confirmation Test" %}
{% endif %}

allauth socialaccount test

Test the signup/login flow without connecting a real IdP account.

{% anchor label="Go to Social Account Signup Test" href="users-testing:socialaccount-signup-test" %}
{% endblock %}