1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00
ttrss/mobile/tt-rss.php

56 lines
1015 B
PHP
Raw Normal View History

2006-03-24 11:00:57 +01:00
<?
require_once "../functions.php";
2006-03-27 04:46:22 +02:00
require_once "functions.php";
2006-03-24 11:00:57 +01:00
basic_nosid_redirect_check();
require_once "../sessions.php";
require_once "../version.php";
require_once "../config.php";
require_once "../db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
2006-03-27 04:46:22 +02:00
login_sequence($link);
2006-03-24 11:00:57 +01:00
?>
<html>
<head>
<title>Tiny Tiny RSS - Mobile</title>
<link rel="stylesheet" type="text/css" href="mobile.css">
</head>
<body>
2006-03-27 04:46:22 +02:00
<table width='640' height='100%'>
<tr><td class="heading">
Your Feeds
</td>
<td align='right'>
<form method="GET">
<select name="go">
<option>Feeds</option>
<option>Preferences</option>
<option disabled>--------------</option>
<option disabled>--------------</option>
<option>Logout</option>
</select>
<input type="submit" value="Go">
</form>
</td>
</tr>
<td class="content" height='100%' colspan='2' valign='top'>
<?
$go = $_GET["go"];
if (!$go || $go == "Feeds") {
render_feeds_list($link);
}
?>
</td></tr>
</table>
2006-03-24 11:00:57 +01:00
</body>
</html>