diff options
Diffstat (limited to 'signout.php')
-rw-r--r-- | signout.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/signout.php b/signout.php new file mode 100644 index 0000000..035877b --- /dev/null +++ b/signout.php @@ -0,0 +1,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>
\ No newline at end of file |