about summary refs log tree commit diff stats
path: root/pages/options/options.html
diff options
context:
space:
mode:
authorSimon Brazell <simon.brazell@gmail.com>2019-10-07 23:01:42 +1100
committerSimon Brazell <simon.brazell@gmail.com>2019-10-07 23:01:42 +1100
commit29f6713cf55895da8e272a3629eec0b0b65db8ae (patch)
treed495be3bdbe5d580253eecc1e4c4ebdeb876ddde /pages/options/options.html
parentFix spelling mistakes, add more icon files. (diff)
parentComplete options & popup menus (diff)
downloadlibredirect-29f6713cf55895da8e272a3629eec0b0b65db8ae.zip
Merge branch 'options'
Diffstat (limited to 'pages/options/options.html')
-rw-r--r--pages/options/options.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/pages/options/options.html b/pages/options/options.html
new file mode 100644
index 00000000..124aa4bf
--- /dev/null
+++ b/pages/options/options.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <title></title>
+  <link href="../styles.css" rel="stylesheet">
+  <title>Privacy Redirect Options</title>
+</head>
+
+<body>
+
+  <section class="options settings_block">
+    <div class="onoffswitch switch" aria-label="Toggle Nitter redirects">
+      <h1>Nitter Redirects</h1>
+      <input aria-hidden="true" id="disableNitter" type="checkbox" checked>&nbsp;
+      <label for="disableNitter" class="checkbox-label">
+      </label>
+    </div>
+  </section>
+
+  <section class="options settings_block">
+    <div class="onoffswitch switch" aria-label="Toggle Invidious redirects">
+      <h1>Invidious Redirects</h1>
+      <input aria-hidden="true" id="disableInvidious" type="checkbox" checked>&nbsp;
+      <label for="disableInvidious" class="checkbox-label">
+      </label>
+    </div>
+  </section>
+
+  <section class="options settings_block">
+    <h1>Nitter Instance</h1>
+    <input id="nitterInstance" type="url" placeholder="https://nitter.net">
+    <h1>Invidious Instance</h1>
+    <input id="invidiousInstance" type="url" placeholder="https://invidio.us">
+  </section>
+
+  <footer>
+    <a class="button" id="save">Save</a>
+  </footer>
+
+  <script src="./options.js"></script>
+
+</body>
+
+</html>
\ No newline at end of file