Moved files around and fixed bugs that caused me suffering due to it

This commit is contained in:
Michał Gdula 2022-07-26 14:52:41 +01:00
parent 4d2afac053
commit 182892b172
11 changed files with 51 additions and 49 deletions

14
account/logout.php Normal file
View file

@ -0,0 +1,14 @@
<?php
// Initialize the session
session_start();
// Unset all of the session variables
$_SESSION = array();
// Destroy the session.
session_destroy();
// Redirect to login page
header("location: https://superdupersecteteuploadtest.fluffybean.gay");
exit;
?>