1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-25 15:30:20 +02:00
searxng/searx/templates/search.html

8 lines
370 B
HTML
Raw Normal View History

2014-03-04 20:31:03 +01:00
<form method="post" action="{{ url_for('index') }}" id="search_form">
2014-01-05 20:27:13 +01:00
<div id="search_wrapper">
2014-03-06 16:37:25 +01:00
<input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
2014-01-29 20:08:00 +01:00
<input type="submit" value="search" id="search_submit" />
2014-01-05 20:27:13 +01:00
</div>
{% include 'categories.html' %}
2013-10-17 01:53:52 +02:00
</form>