blob: 581617f3e38a983d15a63dae9751731acfbc3793 (
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>
<?php include_once 'includes/templates/head.php'; ?>
</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>
|