summaryrefslogtreecommitdiff
path: root/searx/templates/search.html
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-12-03 14:29:00 +0100
committerasciimoo <asciimoo@gmail.com>2013-12-03 14:29:00 +0100
commitdb7af79ac8f7989d5269773f98c95a940eef5402 (patch)
tree28be792e006c2f212559a9774d2c43db0731b4b0 /searx/templates/search.html
parent748fa7f75f2349e4a093698aaa54f6218aca3170 (diff)
[mod] html mods
Diffstat (limited to 'searx/templates/search.html')
-rw-r--r--searx/templates/search.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/search.html b/searx/templates/search.html
index fb5526ef2..1b0103926 100644
--- a/searx/templates/search.html
+++ b/searx/templates/search.html
@@ -3,11 +3,11 @@
<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>
+ <div>
{% 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>
+ </div>
</form>