summaryrefslogtreecommitdiff
path: root/prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 02:17:12 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 02:17:12 +0100
commit007bda3585c5ae865b370eae6ee5f4e2d3cc9cf2 (patch)
tree3782bab434430f4e1cd51d50087432e2d9750a58 /prefs.php
parentc442fb6e28620d702a8dfdab6f42630f618b6b39 (diff)
initial prefpane work
Diffstat (limited to 'prefs.php')
-rw-r--r--prefs.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/prefs.php b/prefs.php
new file mode 100644
index 000000000..9765e14e1
--- /dev/null
+++ b/prefs.php
@@ -0,0 +1,49 @@
+<html>
+<head>
+ <title>Tiny Tiny RSS</title>
+ <link rel="stylesheet" href="tt-rss.css" type="text/css">
+ <script type="text/javascript" src="prefs.js"></script>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+</head>
+
+<body onload="init()">
+
+<table width="100%" height="100%" cellspacing=0 cellpadding=0 class="main">
+<tr>
+ <td class="header" valign="middle" colspan="1">
+ Preferences
+ </td>
+</tr>
+<tr>
+ <td class="toolbar" valign="middle" colspan="1">
+ <a class="button">Close</a>
+ </td>
+</tr>
+</tr>
+ <td class="content" id="content" valign="top">
+ <h2>Feed Configuration</h2>
+
+ <table class="prefAddFeed">
+ <tr><td>Title:</td><td><input id="fadd_title"></td></tr>
+ <tr><td>Link:</td><td><input id="fadd_link"></td></tr>
+ <tr><td colspan="2" align="right">
+ <a class="button" href="javascript:addFeed()">Add feed</a></td></tr>
+ </table>
+
+ <!-- <input type="submit" value="Add feed"> -->
+
+ <div id="feeds">&nbsp;</div>
+
+ <hr>
+ </td>
+</tr>
+<tr>
+ <td colspan="2" id="notify" class="notify">
+ <a href="">Tiny-Tiny RSS</a> v0.1 &copy; 2005 Andrew Dolgov
+ </td>
+</td>
+</table>
+
+
+</body>
+</html>