summaryrefslogtreecommitdiff
path: root/searx/templates/index.html
blob: 1435161aee9d5b8b310fedf5cedf80bb79e92893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block content %}
<div class="center">
    <h1>searx</h1>
    <form method="post" action="">
        <input type="text" name="q" tabindex="1" />
        <input type="submit" value="search" />
        <p>
        {% for engine in engines %}
            {{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
        {% endfor %}
        </p>
    </form>
</div>
{% endblock %}