blob: 9069d4a2c690081c9c2bcc76f50248a8d5236565 (
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>{{.Text}}</code></pre>
<button onclick="save()">save</button>
<a href="/recipe?id={{.Id}}"><button>back</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>
|