first commit

This commit is contained in:
root
2024-10-29 03:42:53 +00:00
commit ce4d28d241
8443 changed files with 257326 additions and 0 deletions

7
cms_admin/logout.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
session_start();
session_unset(); // Unset all session variables
session_destroy(); // Destroy the session
header("Location: sign-in"); // Redirect to login page
exit();
?>