1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-13 00:36:39 +02:00
searxng/searx/templates/search.html
2013-10-17 01:53:52 +02:00

10 lines
343 B
HTML

<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>