e59-website/html/login/logout.php
2024-03-15 15:04:10 +01:00

6 lines
80 B
PHP
Executable File

<?php
session_start();
session_destroy();
header("Location: /login");
exit();
?>