whoogle-search/app/templates/search.html
Ben Busby d5eebe9fe5
Add iframe-able search page for insertion into other sites
Introduces a new html template, search.html, which provides a very basic
form for submitting search queries.

Closes #319
2021-05-21 10:35:46 -04:00

14 lines
440 B
HTML

<form id="search-form" action="{{ url }}/search" method="post">
<input
type="text"
name="q"
style="width: 90%;"
autofocus="autofocus"
autocapitalize="none"
spellcheck="false"
autocorrect="off"
placeholder="Whoogle Search"
autocomplete="off">
<input type="submit" style="width: 9%" id="search-submit" value="Search">
</form>