quartznet-info/admin/logout.php
Gitea 720dcc89eb Layout redesign.
- In a seperate commit from the stylesheet changes. Work in progress.
2020-06-22 03:44:55 -04:00

7 lines
101 B
PHP
Executable File

<?php
session_start();
session_unset();
session_destroy();
header("location:../index.php");
?>