10 lines
224 B
PHP
10 lines
224 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
ini_set('display_errors', '1');
|
|
error_reporting(E_ALL);
|
|
|
|
// In a real app, you would have logout logic here.
|
|
// For now, we just redirect to the main page.
|
|
header('Location: index.php');
|
|
exit;
|