1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/searx_ynh.git synced 2024-09-03 20:16:30 +02:00
searx_ynh/sources/searx/templates/courgette/search.html

7 lines
411 B
HTML
Raw Normal View History

2014-12-01 12:26:38 +01:00
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
2015-02-09 13:30:16 +01:00
<div id="search_wrapper">
<input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" id="search_submit" />
</div>
{% include 'courgette/categories.html' %}
</form>