logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

search.html (486B)


  1. <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
  2. <div id="search_wrapper">
  3. <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" size="100" {% if q %}value="{{ q }}"{% endif %}/>
  4. <input type="submit" value="" id="search_submit" />
  5. {% for category in categories %}
  6. <input type="hidden" name="category_{{ category }}" value="1"/>
  7. {% endfor %}
  8. </div>
  9. </form>