tlm/logout.php
2025-03-27 13:06:13 -04:00

5 lines
82 B
PHP

<?php
setcookie("token", "", -1);
header("Location: index.php");
exit();
?>