diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-10-15 00:02:55 +0200 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-10-15 00:02:55 +0200 |
| commit | 62f6d34b957638a47a25d41eebcf3466a97b31f0 (patch) | |
| tree | b78a6cf077692789517c772ed0185a479584bbff /searx/templates | |
| parent | e91e4e7fdbbdef49b19011ff8d7efa34fa55be3b (diff) | |
[enh] search form @ results page
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/results.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/searx/templates/results.html b/searx/templates/results.html index c7851461a..105624034 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -1,6 +1,9 @@ {% extends "base.html" %} {% block content %} -<h1>searx</h1> +<form method="post" action=""> + <input type="text" name="q" value="{{ q }}"/> + <input type="submit" value="search" /> +</form> {% for result in results %} <p>{{ result|safe }}</p> {% endfor %} |