Initial commit

This commit is contained in:
2026-06-07 19:10:40 +07:00
commit a70150e088
54 changed files with 8967 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
session_start();
header('Content-Type: application/json');
$_SESSION = [];
session_destroy();
echo json_encode(['status' => 'success', 'message' => 'Logout berhasil']);
?>