mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-09 07:39:19 +02:00
23 lines
368 B
PHP
23 lines
368 B
PHP
<?php
|
|
/**
|
|
* Logout Account
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2021 MyAAC
|
|
* @link https://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
|
|
$title = 'Logout';
|
|
|
|
require __DIR__ . '/base.php';
|
|
|
|
if(!$logged) {
|
|
return;
|
|
}
|
|
|
|
require SYSTEM . 'logout.php';
|
|
|
|
$twig->display('account.logout.html.twig');
|