Language updates. New upload form. new classes.

This commit is contained in:
Cody Cook 2025-02-22 00:20:39 -08:00
commit 8f3061ab99
62 changed files with 3107 additions and 1883 deletions

14
logout.php Normal file
View file

@ -0,0 +1,14 @@
<?php
require_once 'includes/globals.php';
use DJMixHosting\SessionManager;
// Start the session (if not already started)
SessionManager::start();
// Destroy the session using the SessionManager
SessionManager::destroy();
// Redirect to the homepage
header("Location: /");
exit();