summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-28 17:22:59 +0200
committerxengineering <me@xengineering.eu>2023-04-28 17:22:59 +0200
commitca3c6edebc835eadbaa5c1f432193ad7b036bf86 (patch)
tree830e66033939832eea876f0d55333d4ea880d9bd
parent127aede391be9defffb2d9afd89ef2c1a9e99627 (diff)
downloadceres-ca3c6edebc835eadbaa5c1f432193ad7b036bf86.tar
ceres-ca3c6edebc835eadbaa5c1f432193ad7b036bf86.tar.zst
ceres-ca3c6edebc835eadbaa5c1f432193ad7b036bf86.zip
Focus search input on index page load
This allows the user to start typing without clicking into the input field.
-rw-r--r--data/templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/index.html b/data/templates/index.html
index 0b97187..04711eb 100644
--- a/data/templates/index.html
+++ b/data/templates/index.html
@@ -16,7 +16,7 @@
<main>
<p>Here are the available recipes 😋🍳🍔🍕🥘</p>
- <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input>
+ <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..." autofocus></input>
<ul id="recipes">{{range .}}
<li><a href="./recipe?id={{.Id}}">{{.Title}}</a></li>{{end}}
</ul>