menu ok graphiquement et page 404 ok

This commit is contained in:
2026-07-02 10:14:49 +00:00
parent 849d7f1350
commit dedf5f1964
10 changed files with 514 additions and 47 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
require_once __DIR__ . '/session.php';
// Destroy the PHP session and clear the session cookie.
session_unset();
session_destroy();
setcookie(session_name(), '', time() - 42000, '/');
// Redirect to the public login/home page.
header('Location: https://giraud-finance.com');
exit;