mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-01 03:20:30 +00:00
d5eebe9fe5
Introduces a new html template, search.html, which provides a very basic form for submitting search queries. Closes #319
14 lines
440 B
HTML
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>
|