Initial commit

This commit is contained in:
ldy
2025-06-06 17:14:52 +08:00
parent 0465a9baef
commit f0aabfb5ac
91 changed files with 4466 additions and 0 deletions

19
login/logout.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
// Start the session
session_start();
// Unset all of the session variables
$_SESSION = array();
// Destroy the session
session_destroy();
// Redirect the user to the login page
echo "<script type='text/javascript'>
window.top.location.href = '../index.html';
</script>";
exit;
?>