mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 12:50:11 +01:00
12 lines
605 B
HTML
12 lines
605 B
HTML
<form method="post" action="/">
|
|
<input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
|
|
<input type="submit" value="search" />
|
|
<p>
|
|
{% for category in categories %}
|
|
<div class="checkbox_container">
|
|
<input type="checkbox" id="checkbox_{{ category }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category }}" class="cb"></label><label for="checkbox_{{ category }}">{{ category }}</label>
|
|
</div>
|
|
{% endfor %}
|
|
</p>
|
|
</form>
|