mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
758 B
17 lines
758 B
<form action="<%= request.path %>" method="get" class="items-center hidden md:flex">
|
|
<% if params[:q].present? %>
|
|
<a href="<%= request.path %>" title="Clear" class="text-xl -mr-3.5 z-10">
|
|
×
|
|
</a>
|
|
<% end %>
|
|
<input id="search" name="q" value="<%= params[:q] %>" class="input input-ghost text-lg pr-10 -mr-12">
|
|
<button type="submit" title="Search" class="btn btn-ghost btn-circle" onclick="window.search.value || document.activeElement === window.search ? null : [event.preventDefault(), window.search.focus()]">
|
|
<span class="enabled">
|
|
<%= svg_icon('search', class: 'w-6 h-6 stroke-2') %>
|
|
</span>
|
|
<span class="disabled">
|
|
<%= svg_icon('loader', class: 'w-5 h-5 animate-spin') %>
|
|
</span>
|
|
</button>
|
|
</form>
|