Initial Upload

This commit is contained in:
friloo 2026-04-21 17:45:58 +02:00 committed by GitHub
commit dbdc237fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 7995 additions and 0 deletions

10
logout.php Normal file
View file

@ -0,0 +1,10 @@
<?php
require_once 'config.php';
require_once 'includes/Database.php';
require_once 'includes/Auth.php';
$auth = new Auth();
$auth->logout();
header('Location: index.php');
exit;