bigly-chat/docs/logout.php

13 lines
221 B
PHP
Raw Permalink Normal View History

2024-12-01 07:04:33 -05:00
<?php
2025-02-05 01:27:45 -05:00
require(__DIR__ . "/../libs/page.php");
page_header();
if (isset($_COOKIE)) {
foreach ($_COOKIE as $key => $value) {
setcookie($key, false);
2024-12-01 07:04:33 -05:00
}
2025-02-05 01:27:45 -05:00
header("Location: /");
die();
}
page_footer();