| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/annonces/templates/yootheme/html/mod_login/ |
Upload File : |
<?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 ?>