2017-05-05 22:49:54 -07:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Successfully Registered with {{ userInformation.resourceOwner.name }}.{% endblock title %}
|
|
|
|
{% block body %}
|
|
|
|
<p class="uk-text-lead uk-text-center">{{ 'header.registration_success' | trans({'%username%': app.user.username}, 'HWIOAuthBundle') }}</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 %}
|