diff options
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/index.html | 2 |
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> |