servnest/public/auth/logout.php

11 lines
189 B
PHP
Raw Normal View History

2022-04-18 23:10:15 +02:00
<?php require "../../inc/top.php"; ?>
2021-01-22 21:58:46 +01:00
<?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
2022-04-18 23:10:15 +02:00
<?php require "../../inc/bottom.php"; ?>