mirror of
https://github.com/Priler/jarvis.git
synced 2026-05-29 16:39:45 +00:00
11 lines
439 B
Svelte
11 lines
439 B
Svelte
<script>
|
|
let search_q = "";
|
|
</script>
|
|
|
|
<div id="search-form" class="search" class:active={search_q != ""}>
|
|
<form action="#" method="GET">
|
|
<input bind:value={search_q} type="text" name="q" placeholder="Введите команду или скажите «Джарвис» ..." autocomplete="off" minlength="3" maxlength="30">
|
|
<button type="submit"></button>
|
|
<small>Enter</small>
|
|
</form>
|
|
</div> |