diff options
| -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 %} |