{% extends 'base.html.twig' %} {% block title %}Kinde Auth Example - Symfony{% endblock %} {% block content %} {% if isAuthenticated %}

Welcome to Your Dashboard

User Information

Name

{{ user.given_name ?? 'N/A' }} {{ user.family_name ?? '' }}

Email

{{ user.email ?? 'N/A' }}

{% if user.picture is defined and user.picture %}

Profile Picture

Profile
{% endif %}
{% if permissions is defined and permissions|length > 0 %}

Your Permissions

{% for permission in permissions %} {{ permission }} {% endfor %}
{% endif %} {% if organization is defined and organization %}

Organization

{{ organization.name ?? 'N/A' }}

{% endif %}
{% else %}

Welcome to Kinde Auth Example

A simple Symfony application demonstrating Kinde authentication integration.

Get Started

Sign in or create an account to access your personalized dashboard and manage your profile.

Secure Authentication

Powered by Kinde's secure authentication system

User Management

Manage your profile and permissions easily

Fast & Modern

Built with Symfony and modern web technologies

{% endif %} {% endblock %}