mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
54 lines
2.4 KiB
HTML
54 lines
2.4 KiB
HTML
<form id="search" method="{{ method or 'POST' }}" action="{{ url_for('search') }}" role="search">
|
|
<div id="search_header">
|
|
<a id="search_logo" href="{{ url_for('index') }}" tabindex="0" title="{{ _('Display the front page') }}">
|
|
<span hidden>SearXNG</span>
|
|
{% include 'simple/searxng-wordmark.min.svg' without context %}
|
|
</a>
|
|
<div id="search_view">
|
|
<div class="search_box">
|
|
<input id="q" name="q" type="text" placeholder="{{ _('Search for...') }}" tabindex="1" autocomplete="off" autocapitalize="none" spellcheck="false" autocorrect="off" dir="auto" value="{{ q or '' }}">
|
|
<button id="clear_search" type="reset" aria-label="{{ _('clear') }}" class="hide_if_nojs"><span>{{ icon_big('close') }}</span><span class="show_if_nojs">{{ _('clear') }}</span></button>
|
|
<button id="send_search" type="submit" aria-label="{{ _('search') }}"><span class="hide_if_nojs">{{ icon_big('search-outline') }}</span><span class="show_if_nojs">{{ _('search') }}</span></button>
|
|
</div>
|
|
</div>
|
|
<div class="chat-form">
|
|
<form id="chat-form">
|
|
<input type="text" id="chat-input" placeholder="Ask me a question...">
|
|
<button type="submit" id="chat-submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
{% set display_tooltip = true %}
|
|
{% include 'simple/categories.html' %}
|
|
</div>
|
|
<div class="search_filters">
|
|
{% include 'simple/filters/languages.html' %}
|
|
{% include 'simple/filters/time_range.html' %}
|
|
{% include 'simple/filters/safesearch.html' %}
|
|
</div>
|
|
<input type="hidden" name="theme" value="{{ theme }}" >
|
|
{% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >{% endif %}
|
|
</form>
|
|
|
|
<script>
|
|
document.getElementById("chat-form").addEventListener("submit", function(event) {
|
|
event.preventDefault();
|
|
|
|
// Get the value of the chat input field
|
|
let chatInput = document.getElementById("chat-input").value;
|
|
|
|
// Make a POST request to the back-end with the chat input as the data
|
|
fetch("/chat", {
|
|
method: "POST",
|
|
body: JSON.stringify({ chatInput }),
|
|
headers: {
|
|
"Content-Type": "application/json"
|
|
}
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
// Display the response from the back-end in the page
|
|
let chatResponse = document.getElementById("chat-response");
|
|
chatResponse.innerHTML = data.response;
|
|
});
|
|
});
|
|
</script>
|