summaryrefslogtreecommitdiff
path: root/data/templates/recipe_edit.html
blob: b35587edabf49a8432a81f4a190a7a31d02fe6b7 (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
27
28
29
30
31
32
33
<!DOCTYPE html>

<html>

	{{ template "head.html" }}

	<body>
		<header>
			<nav>
				<a href="/index.html">HOME</a>
				<a href="/add_recipes">add recipe</a>
			</nav>
			<h1>Edit a recipe</h1>
		</header>

		<main>
			<p>Recipe ID: {{.Id}}</p>
			<pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre>
			<button onclick="save()">save</button>
			<a href="/recipe?id={{.Id}}"><button>cancel</button></a>
			<a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a>
			{{ template "footer.html" }}
		</main>

		<script>
			function save() {
				const xhttp = new XMLHttpRequest();
				xhttp.open("POST", "/recipe/edit?id={{.Id}}", true);
				xhttp.send(document.getElementById('editor').innerText);
			}
		</script>
	</body>
</html>