This commit is contained in:
Suvodip
2025-03-04 20:24:41 +05:30
parent d0ba11be1c
commit ce1dace3fb
14 changed files with 426 additions and 30 deletions

13
.hta_slug/logout.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
session_start(); // Start the session
// Unset all session variables
$_SESSION = [];
// Destroy the session
session_destroy();
// Redirect to login page
header("Location: /");
exit;
?>