summaryrefslogtreecommitdiff
path: root/mobile/tt-rss.php
blob: 9b1453e223c26e3a8d1e34a6618513ba45a13214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?
	require_once "../functions.php"; 
	require_once "functions.php";

	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);	

	login_sequence($link);

?>
<html>
<head>
	<title>Tiny Tiny RSS - Mobile</title>
	<link rel="stylesheet" type="text/css" href="mobile.css">
</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>