mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-10 13:10:30 +00:00
6d362ca5c7
* Relativization of search results * Fix JavaScript error when opening images * Replace single-letter logo and remove sign-in link * Add `WHOOGLE_URL_PREFIX` env var to support relative path redirection The `WHOOGLE_URL_PREFIX` var can now be set to fix internal app redirects, such as the `/session` redirect performed on the first visit to the Whoogle home page. Co-authored-by: Ben Busby <contact@benbusby.com>
15 lines
453 B
HTML
15 lines
453 B
HTML
<form id="search-form" action="search" method="post">
|
|
<input
|
|
type="text"
|
|
name="q"
|
|
style="width: 90%;"
|
|
autofocus="autofocus"
|
|
autocapitalize="none"
|
|
spellcheck="false"
|
|
autocorrect="off"
|
|
placeholder="Whoogle Search"
|
|
autocomplete="off"
|
|
dir="auto">
|
|
<input type="submit" style="width: 9%" id="search-submit" value="Search">
|
|
</form>
|