Dateien nach "public" hochladen

This commit is contained in:
2024-03-10 15:47:14 +00:00
parent e5accf1ea6
commit b193d1c5ce
4 changed files with 431 additions and 0 deletions

7
public/logout.php Normal file
View File

@ -0,0 +1,7 @@
<?php
session_start();
session_unset();
session_destroy();
header("Location: login.php"); // Leiten Sie den Benutzer zur Login-Seite weiter
exit;
?>