summaryrefslogtreecommitdiff
path: root/mobile/logout.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-27 06:56:37 +0100
committerAndrew Dolgov <[email protected]>2006-03-27 06:56:37 +0100
commitab1486d5ae1d8c64632b5b450a55ca071489abc0 (patch)
tree77923b6ec888becd0573d9c2bbfefa560b0007b4 /mobile/logout.php
parentb750d48551e0d89f3f310773dc07ef73e51d3fcb (diff)
finalize basic mobile version
Diffstat (limited to 'mobile/logout.php')
-rw-r--r--mobile/logout.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/mobile/logout.php b/mobile/logout.php
new file mode 100644
index 000000000..74e7a228d
--- /dev/null
+++ b/mobile/logout.php
@@ -0,0 +1,39 @@
+<?
+ require_once "../sessions.php";
+
+ require_once "../config.php";
+ require_once "../functions.php";
+
+ logout_user();
+
+ if (!USE_HTTP_AUTH) {
+ $url_path = get_script_urlpath();
+
+ if (ENABLE_LOGIN_SSL) {
+ $protocol = "https";
+ } else {
+ $protocol = "http";
+ }
+
+ $redirect_base = "$protocol://" . $_SERVER["SERVER_NAME"] . $url_path;
+
+ header("Location: $redirect_base/login.php");
+ } else { ?>
+
+ <html>
+ <head>
+ <title>Tiny Tiny RSS : Logout</title>
+ <link rel="stylesheet" type="text/css" href="tt-rss.css">
+ <body>
+ <h1>You have been logged out.</h1>
+
+ <p><b>Warning:</b>
+ 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>
+
+ </body>
+ </html>
+<? } ?>