{% extends 'base.html.twig' %} {% block title %}Dashboard - Protected Area{% endblock %} {% block body %}

Dashboard - Protected Area

✅ Secure Dashboard

This page is only accessible to authenticated users with ROLE_USER.

User Information

You are logged in as: {{ app.user.userIdentifier }}

Roles: {% for role in app.user.roles %} {{ role }} {% endfor %}

Protected Content
Welcome to the protected area of the application

This is sensitive information that only authenticated users can see.

Your SSO authentication has successfully granted you access to this protected resource.

{% endblock %}