mirror of https://github.com/searxng/searxng.git
11 lines
500 B
HTML
11 lines
500 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 %}
|
|
<input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{ category }}
|
|
{% endfor %}
|
|
</p>
|
|
<p><input type="checkbox" name="save" checked="checked" />remember categories</p>
|
|
</form>
|