summaryrefslogtreecommitdiff
path: root/searx/templates/search.html
blob: d10a8bd7d6e0817a99675de274b151e1bdff62f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<form method="post" action="/" id="search_form">
<div id="search_wrapper">
    <input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
    <input type="submit" value="" id="search_submit" />
</div>
    <div>
    {% for category in categories %}
        <div class="checkbox_container">
            <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category|replace(' ', '_') }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category }}" class="cb"></label><label for="checkbox_{{ category }}">{{ category }}</label>
        </div>
    {% endfor %}
    </div>
</form>