{{define "recipe-confirm-deletion"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<header>
		{{ template "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}}