blob: 7e839cbad44a676e70df7b2d3dd3052f13256aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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}}
|