Files
armeech-neptune/backend/logout.php
T
janis f5bdf57265
Deploy / deploy (push) Successful in 38s
adding authentication
2026-05-07 19:40:39 +02:00

6 lines
91 B
PHP

<?php
session_start();
$_SESSION = array();
session_destroy();
header('Location: /');
exit;