Files
LazyPM/pkg/web/components/search.templ
2026-02-23 14:36:51 +01:00

22 lines
491 B
Plaintext

package components
templ SearchForm(searchQuery string) {
<form
class="flex gap-2 items-center"
hx-get="/"
hx-target="main"
hx-swap="innerHTML"
hx-push-url="true"
hx-trigger="submit, input changed delay:400ms from:input[name='q']"
>
<input
type="search"
name="q"
value={ searchQuery }
placeholder="Search by title, description, or assignee..."
class="input input-md input-bordered text-base-content w-48 md:w-64"
aria-label="Search issues"
/>
</form>
}