blob: d247b13face81f7a0b6260008a65a98ea1b49a88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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">
<a href="/recipe/edit?id={{.Id}}"><button type="button">cancel</button></a>
<button style="background-color:red" type="submit">delete</button>
</form>
{{ template "footer.html" }}
</main>
</body>
</html>
|