summaryrefslogtreecommitdiff
path: root/view/html/recipes.html
diff options
context:
space:
mode:
Diffstat (limited to 'view/html/recipes.html')
-rw-r--r--view/html/recipes.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/view/html/recipes.html b/view/html/recipes.html
index 0287dc5..dc072a1 100644
--- a/view/html/recipes.html
+++ b/view/html/recipes.html
@@ -4,12 +4,13 @@
{{ template "head" }}
<header>
{{ template "nav" }}
- <h1>Recipe overview</h1>
+ <h1>Recipes</h1>
</header>
<body>
<main>
<p>Here are the available recipes 😋🍳🍔🍕🥘</p>
- <input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></input>
+ <p><input id="search" onkeyup="filter()" type="text" placeholder="Search for a recipe ..."></p>
+ <button onclick="create('/recipe')">add</button>
<ul id="recipes">{{range .}}
<li><a href="./recipe/{{.Id}}">{{.Title}}</a></li>{{end}}
</ul>