forked from zaclys/searxng
[enh] browser autocompletition turned off
This commit is contained in:
parent
9f3dcc8d26
commit
3373b2c298
|
@ -6,7 +6,7 @@
|
||||||
<div class="center">
|
<div class="center">
|
||||||
<h1>searx</h1>
|
<h1>searx</h1>
|
||||||
<form method="post" action="">
|
<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" />
|
<input type="submit" value="search" />
|
||||||
<p>
|
<p>
|
||||||
{% for engine in engines %}
|
{% for engine in engines %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<form method="post" action="">
|
<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" />
|
<input type="submit" value="search" />
|
||||||
</form>
|
</form>
|
||||||
{% for result in results %}
|
{% for result in results %}
|
||||||
|
|
Loading…
Reference in New Issue