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 View File

6
 <div class="center">
6
 <div class="center">
7
     <h1>searx</h1>
7
     <h1>searx</h1>
8
     <form method="post" action="">
8
     <form method="post" action="">
9
-        <input type="text" name="q" tabindex="1" />
9
+        <input type="text" name="q" tabindex="1" autocomplete="off" />
10
         <input type="submit" value="search" />
10
         <input type="submit" value="search" />
11
         <p>
11
         <p>
12
         {% for engine in engines %}
12
         {% for engine in engines %}

+ 1
- 1
searx/templates/results.html View File

1
 {% extends "base.html" %}
1
 {% extends "base.html" %}
2
 {% block content %}
2
 {% block content %}
3
 <form method="post" action="">
3
 <form method="post" action="">
4
-    <input type="text" name="q" value="{{ q }}"/>
4
+    <input type="text" name="q" value="{{ q }}" autocomplete="off" />
5
     <input type="submit" value="search" />
5
     <input type="submit" value="search" />
6
 </form>
6
 </form>
7
 {% for result in results %}
7
 {% for result in results %}