Initial commit

This commit is contained in:
Local Administrator
2025-04-18 10:32:42 +02:00
commit b83134aca3
29643 changed files with 3045897 additions and 0 deletions

14
logout.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
session_start();
// Destroy the session
session_destroy();
// Redirect to login page
header("Location: index.php"); // Replace with your actual login page URL
exit();
?>