Initial Commit

This commit is contained in:
2025-05-16 13:58:39 -04:00
commit be843e7074
4 changed files with 132 additions and 0 deletions

9
logout.php Normal file
View File

@ -0,0 +1,9 @@
<?php
session_start();
session_destroy();
// Clear cookie too
setcookie("access_token", "", time() - 3600, "/", "", true, true);
header("Location: index.php");
exit;