| Current Path : /home/e/o/l/eolienneia/www/templates/yootheme/html/mod_login/ |
| Current File : /home/e/o/l/eolienneia/www/templates/yootheme/html/mod_login/default_logout.php |
<?php
defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
HTMLHelper::_('behavior.keepalive');
?>
<?php if ($type == 'logout') : ?>
<form action="<?= Route::_('index.php', true, $params->get('usesecure')) ?>" method="post">
<?php if ($params->get('greeting')) : ?>
<div class="uk-margin">
<?php if ($params->get('name') == 0) :
echo Text::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('name')));
else :
echo Text::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('username')));
endif ?>
</div>
<?php endif ?>
<?php if ($params->get('profilelink', 0)) : ?>
<div class="uk-margin">
<a href="<?= Route::_('index.php?option=com_users&view=profile') ?>"> <?= Text::_('MOD_LOGIN_PROFILE') ?></a>
</div>
<?php endif ?>
<div class="uk-margin">
<button class="uk-button uk-button-primary" value="<?= Text::_('JLOGOUT') ?>" name="Submit" type="submit"><?= Text::_('JLOGOUT') ?></button>
</div>
<input type="hidden" name="option" value="com_users">
<input type="hidden" name="task" value="user.logout">
<input type="hidden" name="return" value="<?= $return ?>">
<?= HTMLHelper::_('form.token') ?>
</form>
<?php endif ?>