10 lines
420 B
Twig
10 lines
420 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Connected account with {{ userInformation.resourceOwner.name }}{% endblock title %}
|
|
{% block body %}
|
|
<p class="uk-text-center uk-text-lead">Connected account with {{ userInformation.resourceOwner.name }}</p>
|
|
<p class="uk-text-center">
|
|
<a href="{{ path('fos_user_profile_show') }}" title="Go to profile">Go to your profile</a>
|
|
</p>
|
|
{% endblock body %}
|