diff --git a/logout.php b/logout.php
new file mode 100644
index 0000000000000000000000000000000000000000..3b2b6a1355ee2746b0cdea1116a2a73fcdf3f280
--- /dev/null
+++ b/logout.php
@@ -0,0 +1,8 @@
+<?php
+session_start();
+unset($_SESSION["AID"]);
+unset($_SESSION["ID"]);
+session_destroy();
+header("location:index.php");
+
+?>
\ No newline at end of file