summaryrefslogtreecommitdiff
path: root/signout.php
blob: 035877bb21b721997647f532ed4116ffb31a1b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
	<title>Sign out - cflip.net forums</title>
	<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<?php
include_once './includes/Session.php';
Session::get()->sign_out();

include_once './includes/templates/header.php';
echo '<p class="success">You have now been signed out</p>';
?>
</body>
</html>