servnest/auth/logout.php

11 lines
183 B
PHP
Raw Normal View History

2021-01-22 21:58:46 +01:00
<?php require "../top.inc.php"; ?>
<?php
session_destroy();
2021-08-05 12:51:18 +02:00
header('Clear-Site-Data: "*"');
2021-02-16 19:20:19 +01:00
header('Location: ' . PREFIX . '/auth/');
2021-01-22 21:58:46 +01:00
exit;
?>
2021-02-16 19:20:19 +01:00
2021-01-22 21:58:46 +01:00
<?php require "../bottom.inc.php"; ?>