tkr/templates/logout.php
2025-06-02 21:36:59 -04:00

8 lines
116 B
PHP

<?php
$_SESSION = [];
session_destroy();
$config = Config::load();
header('Location: ' . $config->basePath);
exit;