{% extends 'base.html.twig' %} {% block title %}User Info - Kinde Auth Example{% endblock %} {% block content %}

User Information

{% if user %}

Profile Details

First Name

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

Last Name

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

Email

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

User ID

{{ user.id ?? '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

Name

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

ID

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

{% endif %}

Raw User Data

{{ user|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% else %}
User information not available.
{% endif %}
{% endblock %}