39760-vm/logout.php
2026-04-21 09:42:14 +00:00

12 lines
191 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/app.php';
logout_admin();
session_start();
set_flash('success', 'You have been logged out.');
header('Location: /login.php');
exit;