mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			732 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			732 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% from 'oscar/macros.html' import icon %}
 | 
						|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form" role="search">
 | 
						|
    <div class="input-group col-sm-12">
 | 
						|
        <input type="search" name="q" class="form-control" id="q" placeholder="{{ _('Search for...') }}" autocomplete="off" value="{{ q }}">
 | 
						|
        <span class="input-group-btn">
 | 
						|
            <button type="submit" class="btn btn-default"><span class="hide_if_nojs">{{ icon('search') }}</span><span class="hidden active_if_nojs">{{ _('Start search') }}</span></button>
 | 
						|
        </span>
 | 
						|
    </div>
 | 
						|
    <div class="input-group col-sm-12 advanced">
 | 
						|
        {% include 'oscar/advanced.html' %}
 | 
						|
    </div>
 | 
						|
</form><!-- / #search_form_full -->
 |