summaryrefslogtreecommitdiff
path: root/account/logout.php
blob: dfe0952f1815e6f3d71d07f78a5360cd8589ae49 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/partials.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/utils.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/config.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/lib/alert.php';

session_destroy();

header('Location: /');
echo 'Logged out!';