diff options
| author | asciimoo <asciimoo@gmail.com> | 2013-10-17 01:44:50 +0200 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2013-10-17 01:44:50 +0200 |
| commit | 3373b2c2987302087777c89c4419fd7b67ca579e (patch) | |
| tree | cb9d91bbc2d03b7a41f308d8e46e165c4ebadac8 | |
| parent | 9f3dcc8d26c06cb2af17e69658147b0f1466dceb (diff) | |
[enh] browser autocompletition turned off
| -rw-r--r-- | searx/templates/index.html | 2 | ||||
| -rw-r--r-- | searx/templates/results.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/index.html b/searx/templates/index.html index 817f886ee..a25b84164 100644 --- a/searx/templates/index.html +++ b/searx/templates/index.html @@ -6,7 +6,7 @@ <div class="center"> <h1>searx</h1> <form method="post" action=""> - <input type="text" name="q" tabindex="1" /> + <input type="text" name="q" tabindex="1" autocomplete="off" /> <input type="submit" value="search" /> <p> {% for engine in engines %} diff --git a/searx/templates/results.html b/searx/templates/results.html index 5665bc501..8d2683a74 100644 --- a/searx/templates/results.html +++ b/searx/templates/results.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} <form method="post" action=""> - <input type="text" name="q" value="{{ q }}"/> + <input type="text" name="q" value="{{ q }}" autocomplete="off" /> <input type="submit" value="search" /> </form> {% for result in results %} |