{% extends 'base.html.twig' %} {% block body %}
{{ dump(form) }} {% if userInformation.resourceOwner.name == 'yahoo' %} {% set name = userInformation.nickname %} {% else %} {% set name = userInformation.email %} {% endif %}

{{ 'header.register' | trans({'%name%': name }, 'HWIOAuthBundle') }}

{{ form_start(form, {'action': path('hwi_oauth_connect_registration', {'key': key}), 'attr': {'class': 'hwi_oauth_registration_register uk-form uk-form-horizontal'}}) }} {{ form_widget(form) }}
{{ 'connect.registration.cancel' | trans({}, 'HWIOAuthBundle') }}
{{ form_end(form) }} {% if userInformation.profilePicture is not empty %} {% endif %}
{% endblock body %}