1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-17 18:50:16 +02:00
searxng/searx/templates/legacy/search.html

9 lines
467 B
HTML
Raw Normal View History

<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
<div id="search_wrapper">
2020-05-27 14:49:00 +02:00
<input type="text" autofocus placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" size="100" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" id="search_submit" />
</div>
{% set display_tooltip = true %}
{% include 'legacy/categories.html' %}
2013-10-17 01:53:52 +02:00
</form>