Browse Source

[enh] browser autocompletition turned off

asciimoo 11 years ago
parent
commit
3373b2c298
2 changed files with 2 additions and 2 deletions
  1. 1 1
      searx/templates/index.html
  2. 1 1
      searx/templates/results.html

+ 1 - 1
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 %}

+ 1 - 1
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 %}