mirror of
https://github.com/searxng/searxng
synced 2024-11-05 06:01:05 +00:00
Merge pull request #870 from not-my-profile/autocomplete-off
preferences: Set autocomplete=off for form
This commit is contained in:
commit
e5071e5972
@ -94,7 +94,7 @@
|
|||||||
<div>
|
<div>
|
||||||
|
|
||||||
<h1>{{ _('Preferences') }}</h1>
|
<h1>{{ _('Preferences') }}</h1>
|
||||||
<form method="post" action="{{ url_for('preferences') }}" id="search_form">
|
<form method="post" action="{{ url_for('preferences') }}" id="search_form" autocomplete="off">
|
||||||
|
|
||||||
<!-- Nav tabs -->
|
<!-- Nav tabs -->
|
||||||
<ul class="nav nav-tabs nav-justified hide_if_nojs" role="tablist">
|
<ul class="nav nav-tabs nav-justified hide_if_nojs" role="tablist">
|
||||||
|
@ -98,7 +98,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ _('Preferences') }}</h1>
|
<h1>{{ _('Preferences') }}</h1>
|
||||||
|
|
||||||
<form id="search_form" method="post" action="{{ url_for('preferences') }}">
|
<form id="search_form" method="post" action="{{ url_for('preferences') }}" autocomplete="off">
|
||||||
|
|
||||||
{{ tabs_open() }}
|
{{ tabs_open() }}
|
||||||
|
|
||||||
|
@ -186,7 +186,7 @@ class ViewsTestCase(SearxTestCase):
|
|||||||
def test_preferences(self):
|
def test_preferences(self):
|
||||||
result = self.app.get('/preferences')
|
result = self.app.get('/preferences')
|
||||||
self.assertEqual(result.status_code, 200)
|
self.assertEqual(result.status_code, 200)
|
||||||
self.assertIn(b'<form method="post" action="/preferences" id="search_form">', result.data)
|
self.assertIn(b'<form method="post" action="/preferences" id="search_form" autocomplete="off">', result.data)
|
||||||
self.assertIn(b'<label class="col-sm-3 col-md-2" for="categories">Default categories</label>', result.data)
|
self.assertIn(b'<label class="col-sm-3 col-md-2" for="categories">Default categories</label>', result.data)
|
||||||
self.assertIn(b'<label class="col-sm-3 col-md-2" for="locale">Interface language</label>', result.data)
|
self.assertIn(b'<label class="col-sm-3 col-md-2" for="locale">Interface language</label>', result.data)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user