logo

searx

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

search.html (850B)


  1. <form id="search" method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
  2. <div class="search_box">
  3. <input autofocus id="q" name="q" type="text" placeholder="{{ _('Search for...') }}" dir="auto" {% if q %}value="{{ q }}"{% endif %} >
  4. <select id="safesearch" name="safesearch">
  5. <option value="2" {% if safesearch == '2' %}selected="selected"{% endif %}>{{ _('Strict') }}</option>
  6. <option value="1" {% if safesearch == '1' %}selected="selected"{% endif %}>{{ _('Moderate') }}</option>
  7. <option value="0" {% if safesearch == '0' %}selected="selected"{% endif %}>{{ _('None') }}</option>
  8. </select>
  9. <button id="send_search" type="submit">🔍</button>
  10. </div>
  11. <div class="search_filters">
  12. {% include 'lanodan/languages.html' %}
  13. {% include 'lanodan/time-range.html' %}
  14. </div>
  15. {% include 'lanodan/categories.html' %}
  16. </form>