mirror of
https://github.com/avecms/AVE.cms.git
synced 2026-08-01 08:45:44 +00:00
13 lines
569 B
Twig
13 lines
569 B
Twig
{% if oauth_providers %}
|
|
<div class="system-public-auth-oauth" data-auth-oauth>
|
|
<div class="system-public-auth-oauth-divider"><span>или войдите через</span></div>
|
|
<div class="system-public-auth-oauth-list">
|
|
{% for provider in oauth_providers %}
|
|
<a class="system-public-auth-oauth-button is-{{ provider.code }}" href="{{ base }}{{ provider.url }}?_return={{ return_url|default('/')|url_encode }}">
|
|
<span aria-hidden="true">{{ provider.icon }}</span><b>{{ provider.label }}</b>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|