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