summaryrefslogtreecommitdiff
path: root/data/templates/recipe_confirm_deletion.html
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/recipe_confirm_deletion.html')
-rw-r--r--data/templates/recipe_confirm_deletion.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/data/templates/recipe_confirm_deletion.html b/data/templates/recipe_confirm_deletion.html
deleted file mode 100644
index 17c4da8..0000000
--- a/data/templates/recipe_confirm_deletion.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!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>Do you really want to delete this recipe?</p>
- <form action="/recipe/confirm-deletion?id={{.Id}}" method="POST">
- <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a>
- <button style="background-color:red" type="submit">delete</button>
- </form>
- {{ template "footer.html" }}
- </main>
- </body>
-</html>