diff options
Diffstat (limited to 'view/html/recipe-confirm-deletion.html')
-rw-r--r-- | view/html/recipe-confirm-deletion.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/view/html/recipe-confirm-deletion.html b/view/html/recipe-confirm-deletion.html new file mode 100644 index 0000000..7e839cb --- /dev/null +++ b/view/html/recipe-confirm-deletion.html @@ -0,0 +1,21 @@ +{{define "recipe-confirm-deletion"}} +<!DOCTYPE html> +<html> + {{ template "head" }} + <header> + <nav> + <a href="/recipes">HOME</a> + </nav> + <h1>Delete a recipe</h1> + </header> + <body> + <main> + <p>Do you really want to delete this recipe?</p> + <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> + <button onclick="del('/recipe/{{.Id}}')" style="background-color:red">delete</button> + </main> + {{ template "footer" }} + <script src="/static/view/static/ceres.js"></script> + </body> +</html> +{{end}} |