aboutsummaryrefslogtreecommitdiff
path: root/options/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'options/index.html')
-rw-r--r--options/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/options/index.html b/options/index.html
new file mode 100644
index 0000000..9817b71
--- /dev/null
+++ b/options/index.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta charset="UTF-8">
+ <title>Options</title>
+</head>
+
+<body>
+ <form>
+ <table>
+ <tr>
+ <td><label for="rb">rss-bridge instance</label></td>
+ <td><input type="text" id="rb"></td>
+ </tr>
+ <tr>
+ <td><label for="reader">reader type:</label></td>
+ <td>
+ <select name="reader" id="reader">
+ <option value="ttrss">TT-RSS</option>
+ <option value="miniflux">Miniflux</option>
+ </select>
+ </td>
+ </tr>
+ <tr>
+ <td><label for="instance">instance URL:</label></td>
+ <td><input type="text" id="instance"></td>
+ </tr>
+ <tr>
+ <td>
+ <button type="submit">Save</button>
+ </td>
+ </tr>
+ </table>
+ </form>
+ <script src="options/index.js"></script>
+</body>
+
+</html>