blob: b2489055625a7c596dc8a8babb854a924a0b23cd (
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
|
<!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="tr">tt-rss instance</label></td>
<td><input type="text" id="tr"></td>
</tr>
<tr>
<td>
<button type="submit">Save</button>
</td>
</tr>
</table>
</form>
<script src="options.js"></script>
</body>
</html>
|