aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/options/search.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/options/search.html')
-rw-r--r--src/pages/options/search.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/pages/options/search.html b/src/pages/options/search.html
new file mode 100644
index 00000000..6a5af775
--- /dev/null
+++ b/src/pages/options/search.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">Reddit</a>
+ <a href="search.html" class="selected">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>Search</h1>
+ <input id="disable-search" type="checkbox" checked />
+ </div>
+ <div class="some-block option-block">
+ <h4>Instance</h4>
+ <!-- <div class="autocomplete"> -->
+ <input id="search-instance" type="url"
+ data-localise-placeholder="__MSG_randomInstancePlaceholder__"
+ placeholder="Random instance (none selected)" />
+ <!-- </div> -->
+ </div>
+
+ <div class="some-block option-block">
+ <h4>Frontend</h4>
+ <select id="search-frontend">
+ <option value="searx">SearX</option>
+ <option value="whoogle">Whoogle</option>
+ </select>
+ </div>
+
+ <section class="settings-block">
+ <h4>SearX Instance List</h4>
+ <div class="random-pool">
+ <textarea id="searx-random-pool" type="text"></textarea>
+ <ul id="searx-random-pool-list"></ul>
+ </div>
+ </section>
+
+ <section class="settings-block">
+ <h4>Whoogle Instance List</h4>
+ <div class="random-pool">
+ <textarea id="whoogle-random-pool" type="text"></textarea>
+ <ul id="whoogle-random-pool-list"></ul>
+ </div>
+ </section>
+
+ </section>
+
+
+ <script type="module" src="./search.js"></script>
+ <script src="../../assets/javascripts/localise.js"></script>
+</body>
+
+</html> \ No newline at end of file