summaryrefslogtreecommitdiff
path: root/searx/templates/search.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-10-17 01:53:52 +0200
committerasciimoo <asciimoo@gmail.com>2013-10-17 01:53:52 +0200
commit053170628739dc63b87711dd79b580e3d41bebb0 (patch)
tree2c3b38da3ab258c0fc901984e1e2267889473e50 /searx/templates/search.html
parent3373b2c2987302087777c89c4419fd7b67ca579e (diff)
[enh][mod] template refactor
Diffstat (limited to 'searx/templates/search.html')
-rw-r--r--searx/templates/search.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/searx/templates/search.html b/searx/templates/search.html
new file mode 100644
index 000000000..49331a141
--- /dev/null
+++ b/searx/templates/search.html
@@ -0,0 +1,9 @@
+<form method="post" action="">
+ <input type="text" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
+ <input type="submit" value="search" />
+ <p>
+ {% for engine in engines %}
+ {{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
+ {% endfor %}
+ </p>
+</form>