diff options
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/recipe_confirm_deletion.html | 26 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html new file mode 100644 index 0000000..08c981d --- /dev/null +++ b/data/templates/recipe_confirm_deletion.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> + +<html> + + {{ template "head.html" }} + + <body> + <header> + <nav> + <a href="/index.html">HOME</a> + <a href="/add_recipes">add recipe</a> + </nav> + <h1>Delete a recipe</h1> + </header> + + <main> + <p>Recipe ID: {{.Id}}</p> + <p>Do you really want to delete this recipe?</p> + <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST"> + <button style="background-color:red" type="submit">delete</button> + </form> + <a href="/recipe?id={{.Id}}"><button>cancel</button></a> + {{ template "footer.html" }} + </main> + </body> +</html> diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index d622ce1..b35587e 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -18,6 +18,7 @@ <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre> <button onclick="save()">save</button> <a href="/recipe?id={{.Id}}"><button>cancel</button></a> + <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> {{ template "footer.html" }} </main> |