52 lines
2.2 KiB
Smarty
52 lines
2.2 KiB
Smarty
{*
|
|
* 2017-2019 Zemez
|
|
*
|
|
* JX Header Account
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the General Public License (GPL 2.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/GPL-2.0
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade the module to newer
|
|
* versions in the future.
|
|
*
|
|
* @author Zemez (Alexander Grosul)
|
|
* @copyright 2017-2019 Zemez
|
|
* @license http://opensource.org/licenses/GPL-2.0 General Public License (GPL 2.0)
|
|
*}
|
|
|
|
{if $f_status || $g_status || $vk_status}
|
|
<div class="clearfix social-login-buttons row align-items-center justify-content-center mb-2 mb-lg-4">
|
|
{if $f_status}
|
|
<div class="col-auto mb-2">
|
|
<a class="btn-social-icon" href="{url entity='module' name='jxheaderaccount' controller='facebooklogin' params=['back' => {url entity='index'}] ssl=true}"
|
|
title="{l s='Register with Your Facebook Account' mod='jxheaderaccount'}">
|
|
<i class="fa fa-facebook btn-facebook" aria-hidden="true"></i>
|
|
<span class="d-none d-sm-inline-block">Zarejestruj się przy użyciu Facebooka!</span>
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
{if $g_status}
|
|
<div class="col-auto mb-2">
|
|
<a class="btn-social-icon" href="{url entity='module' name='jxheaderaccount' controller='googlelogin' params=['back' => {url entity='index'}] ssl=true}"
|
|
title="{l s='Register with Your Google Account' mod='jxheaderaccount'}">
|
|
<i class="fa fa-google-plus btn-google" aria-hidden="true"></i>
|
|
<span class="d-none d-sm-inline-block">Zaloguj się przy użyciu konta Google!</span>
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
{if $vk_status}
|
|
<div class="col-auto mb-2">
|
|
<a class="btn-social-icon" href="{url entity='module' name='jxheaderaccount' controller='vklogin' params=['back' => {url entity='index'}] ssl=true}" title="{l s='Register with Your VK Account' mod='jxheaderaccount'}">
|
|
<i class="fa fa-vk btn-vk" aria-hidden="true"></i>
|
|
<span class="d-none d-sm-inline-block">{l s='Register with Your VK Account' mod='jxheaderaccount'}</span>
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if} |