1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 01:35:56 +00:00

finalize basic mobile version

This commit is contained in:
Andrew Dolgov
2006-03-27 06:56:37 +01:00
parent b750d48551
commit ab1486d5ae
4 changed files with 127 additions and 167 deletions

39
mobile/logout.php Normal file
View File

@@ -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>
<? } ?>