This commit is contained in:
biglyderv 2024-12-01 07:04:33 -05:00
parent 62aea1726e
commit c2f1067e5e
2 changed files with 14 additions and 0 deletions

13
docs/logout.php Normal file
View file

@ -0,0 +1,13 @@
<?php
require("../libs/page.php");
page_header();
if (isset($_COOKIE)) {
foreach ( $_COOKIE as $key => $value )
{
setcookie( $key, FALSE );
}
header("Location: /");
die();
}
page_footer();
?>