aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/options/reddit.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/options/reddit.html')
-rw-r--r--src/pages/options/reddit.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/pages/options/reddit.html b/src/pages/options/reddit.html
new file mode 100644
index 00000000..b5af36f7
--- /dev/null
+++ b/src/pages/options/reddit.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link href="../stylesheets/styles.css" rel="stylesheet" />
+ <title>LibRedirect Options: Twitter</title>
+</head>
+
+<body class="option">
+ <section class="links">
+ <a href="general.html">General</a>
+ <a href="youtube.html">Youtube</a>
+ <a href="twitter.html">Twitter</a>
+ <a href="instagram.html">Instagram</a>
+ <a href="reddit.html" class="selected">Reddit</a>
+ <a href="search.html">Search</a>
+ <a href="translate.html">Translate</a>
+ <a href="maps.html">Maps</a>
+ <a href="wikipedia.html">Wikipedia</a>
+ <a href="medium.html">Medium</a>
+ </section>
+
+
+ <section class="option-block">
+
+ <div class="some-block option-block">
+ <h1>Reddit</h1>
+ <input id="disable-reddit" type="checkbox" checked />
+ </div>
+
+ <div class="some-block option-block">
+ <h4>Instance</h4>
+ <div class="autocomplete">
+ <input id="reddit-instance" type="url" placeholder="https://libredd.it" />
+ </div>
+ </div>
+
+ <div class="some-block option-block">
+ <h4>Frontend</h4>
+ <select id="reddit-frontend">
+ <option value="libreddit">LibReddit</option>
+ <option value="teddit">Teddit</option>
+ </select>
+ </div>
+
+ <section class="settings-block">
+ <h4>LibReddit Instance List</h4>
+ <div class="random-pool">
+ <textarea id="libreddit-random-pool" type="text"></textarea>
+ <ul id="libreddit-random-pool-list"></ul>
+ </div>
+ </section>
+
+ <section class="settings-block">
+ <h4>Teddit Instance List</h4>
+ <div class="random-pool">
+ <textarea id="teddit-random-pool" type="text"></textarea>
+ <ul id="teddit-random-pool-list"></ul>
+ </div>
+ </section>
+
+ </section>
+
+ <script type="module" src="./reddit.js"></script>
+ <script src="../../assets/javascripts/localise.js"></script>
+</body>
+
+</html> \ No newline at end of file