mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2026-01-06 06:51:27 +00:00
13 lines
542 B
Plaintext
13 lines
542 B
Plaintext
<form class="pure-form" action="/search" method="get">
|
|
<fieldset>
|
|
<input type="search" id="searchbox" autocorrect="off"
|
|
autocapitalize="none" spellcheck="false" <% if autofocus %>autofocus<% end %>
|
|
name="q" placeholder="<%= translate(locale, "search") %>"
|
|
title="<%= translate(locale, "search") %>"
|
|
value="<%= env.get?("search").try {|x| HTML.escape(x.as(String)) } %>">
|
|
</fieldset>
|
|
<button type="submit" id="searchbutton" aria-label="<%= translate(locale, "search") %>">
|
|
<i class="icon ion-ios-search"></i>
|
|
</button>
|
|
</form>
|