blob: bbaa47ab9430b485c3848b25a59910eaedf426f4 (
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>
|