diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-06-23 15:21:12 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-06-23 15:21:12 -0600 |
commit | f5e972c030675f46cda543e13da1b787457e070b (patch) | |
tree | 7c0d2bb4138fe60060ff73b61e15881765ba5412 /signout.php | |
parent | fd0c3a283153d6f2d759e5e14888e40e65dc61b7 (diff) |
Add the rest of the changes
Diffstat (limited to 'signout.php')
-rwxr-xr-x[-rw-r--r--] | signout.php | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/signout.php b/signout.php index bbaa47a..581617f 100644..100755 --- a/signout.php +++ b/signout.php @@ -1,16 +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> +<!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>
|