summaryrefslogtreecommitdiff
path: root/logout.php
diff options
context:
space:
mode:
Diffstat (limited to 'logout.php')
-rw-r--r--logout.php26
1 files changed, 22 insertions, 4 deletions
diff --git a/logout.php b/logout.php
index 7757689dc..9af2bab61 100644
--- a/logout.php
+++ b/logout.php
@@ -8,7 +8,25 @@
if (!USE_HTTP_AUTH) {
header("Location: login.php");
- } else {
- header("Location: tt-rss.php");
- }
-?>
+ } else { ?>
+
+ <html>
+ <head>
+ <title>Tiny Tiny RSS : Logout</title>
+ <link rel="stylesheet" type="text/css" href="tt-rss.css">
+ <body class="logoutBody">
+ <div class="logoutContent">
+
+ <h1>You have been logged out.</h1>
+
+ <p><span class="logoutWarning">Warning:</span>
+ As there is no way to reliably clear HTTP Authentication
+ credentials from your browser, it is recommended for you to close
+ this browser window, otherwise your browser could automatically
+ authenticate again using previously supplied credentials, which
+ is a security risk.</p>
+
+ </div>
+ </body>
+ </html>
+<? } ?>