Initial import

This commit is contained in:
genuineparts 2025-07-05 18:57:47 +02:00
commit c89f3a4171
8 changed files with 712 additions and 0 deletions

9
logout.php Normal file
View file

@ -0,0 +1,9 @@
<?php
// Start the session
session_start();
// Destroy the active session, which logs the user out
session_destroy();
// Redirect to the login pag
header('Location: index.php');
exit;
?>