Files
2026-06-17 11:55:21 +02:00

9 lines
112 B
PHP

<?php
SESSION_START();
if(SESSION_DESTROY()){
header('Location: /login/');
}
else{
header('Location: /');
}
?>