Index: Logout.php
===================================================================
--- Logout.php	(revision e3d4e0a8bc0f13135f27c0b055b5c00f64a28f01)
+++ Logout.php	(revision e3d4e0a8bc0f13135f27c0b055b5c00f64a28f01)
@@ -0,0 +1,8 @@
+<?php
+
+    session_start();
+    $_SESSION = array();
+    session_destroy();
+
+    header("Location: ./Front Page.php");
+?>
