2017-05-05 22:49:54 -07:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Connect with your social media accounts{% endblock title %}
|
|
|
|
{% block body %}
|
2017-04-09 18:08:01 -07:00
|
|
|
{% if error is defined and error %}
|
2017-05-05 22:49:54 -07:00
|
|
|
<div class="uk-alert uk-alert-danger" data-uk-alert>
|
|
|
|
<a href="#" class="uk-alert-close uk-close"></a>
|
|
|
|
<p>{{ error }}</p>
|
|
|
|
</div>
|
2017-04-09 18:08:01 -07:00
|
|
|
{% endif %}
|
2017-05-05 22:49:54 -07:00
|
|
|
<div class="uk-text-center uk-child-width-1-1@s uk-child-width-1-5@m" uk-grid>
|
2017-04-09 18:08:01 -07:00
|
|
|
{% for owner in hwi_oauth_resource_owners() %}
|
2017-05-05 22:49:54 -07:00
|
|
|
<div class="uk-text-center">
|
|
|
|
<a href="{{ hwi_oauth_login_url(owner) }}">{{ owner | trans({}, 'HWIOAuthBundle') }}</a>
|
|
|
|
</div>
|
2017-04-09 18:08:01 -07:00
|
|
|
{% endfor %}
|
2017-05-05 22:49:54 -07:00
|
|
|
</div>
|
|
|
|
{% endblock body %}
|