summaryrefslogtreecommitdiff
path: root/view/html/recipe-confirm-deletion.html
blob: 2bc942974f58ef11b671ced87e6bc49b24c02109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{define "recipe-confirm-deletion"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<body>
		<header>
			{{ template "nav" }}
			<h1>Delete a recipe</h1>
		</header>
		<main>
			<p>Do you really want to delete this recipe?</p>
			<button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>
			<button onclick="del('/recipe/{{.Id}}')">delete</button>
		</main>
		{{ template "footer" }}
		<script src="/static/view/static/ceres.js"></script>
	</body>
</html>
{{end}}