Files
controls-web/controls-classic/logout.php
2026-02-17 09:29:34 -06:00

6 lines
81 B
PHP

<?php
session_start();
session_destroy();
header('Location: index.php');
exit;
?>