summaryrefslogtreecommitdiff
path: root/searx/templates/search.html
blob: fb5526ef2a6257ee9f9f7de83cb77fd49c95a0fe (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>
    <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>