summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/search.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2020-11-03 15:09:44 +0100
committerGitHub <noreply@github.com>2020-11-03 15:09:44 +0100
commit9c3382d12afa22fcd63c84c0d1a2b506d043fab4 (patch)
tree14f3e1e9cf815cf5cc301fb1699cd54816adfc25 /searx/templates/courgette/search.html
parent45f58a4a2a0b89f4b416c28ea769139b16f6436d (diff)
parent8d71420b4511fdac63c39f33d93c7add1ea7716d (diff)
Merge pull request #1681 from MarcAbonce/index_refactor
[mod] Separate index and search routes
Diffstat (limited to 'searx/templates/courgette/search.html')
-rw-r--r--searx/templates/courgette/search.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/courgette/search.html b/searx/templates/courgette/search.html
index fe70fde05..89daead89 100644
--- a/searx/templates/courgette/search.html
+++ b/searx/templates/courgette/search.html
@@ -1,7 +1,7 @@
-<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
+<form method="{{ method or 'POST' }}" action="{{ url_for('search') }}" id="search_form">
<div id="search_wrapper">
<input type="text" autofocus placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
<input type="submit" value="search" id="search_submit" />
</div>
{% include 'courgette/categories.html' %}
-</form> \ No newline at end of file
+</form>