This commit is contained in:
2025-10-29 16:54:38 +01:00
parent 7181ead64e
commit 62cf15ab8b
4 changed files with 168 additions and 0 deletions

8
logout.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
session_start();
session_destroy();
header('Location: login.php');
exit;
?>