first commit

This commit is contained in:
2025-11-02 19:42:11 +01:00
commit a6995fbab5
15 changed files with 471 additions and 0 deletions

10
admin/logout.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
session_start();
$_SESSION = [];
session_destroy();
header('Location: login.php');
exit;
?>