summaryrefslogtreecommitdiff
path: root/mobile
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-27 03:46:22 +0100
committerAndrew Dolgov <[email protected]>2006-03-27 03:46:22 +0100
commitca35939d207237fb3cf3f8f63fb888d62280f24c (patch)
tree88924793cf9f86fa74fa243cbf80fce22a3b412a /mobile
parent9338b88c088b85df343300178fd0df501645b368 (diff)
more mobile work
Diffstat (limited to 'mobile')
-rw-r--r--mobile/tt-rss.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php
index 729969a64..9b1453e22 100644
--- a/mobile/tt-rss.php
+++ b/mobile/tt-rss.php
@@ -1,5 +1,6 @@
<?
require_once "../functions.php";
+ require_once "functions.php";
basic_nosid_redirect_check();
@@ -10,6 +11,9 @@
require_once "../db-prefs.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+
+ login_sequence($link);
+
?>
<html>
<head>
@@ -18,5 +22,34 @@
</head>
<body>
+<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>
+
</body>
</html>