Restore: Recover src/processors folder accidentally deleted during merge

This commit is contained in:
twotalesanimation
2025-12-04 15:19:52 +02:00
parent be2b757f4e
commit ac460ef97f
24 changed files with 2161 additions and 0 deletions

14
src/processors/logout.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
session_start();
// Destroy the session
session_destroy();
// Redirect to login page
header("Location: index"); // Replace with your actual login page URL
exit();
?>