forked from zaclys/searxng
		
	The <input type="reset"> introduced in the PR 894, restores the default value. It works in the index page, but it doesn't work in the /search page: the reset button restore the initial query. This PR: * fix the JS version: the reset button clear the text * keep the clear button in the / page * hide the clear button in the /search page
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			1.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 '__common__/searxng-wordmark.min.svg' without context %}
 | 
						|
    </a>
 | 
						|
    <div class="search_box">
 | 
						|
      <input id="q" autofocus name="q" type="text" placeholder="{{ _('Search for...') }}" autocomplete="off" spellcheck="false" 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>
 | 
						|
    {% 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>
 |