blob: fc1d74c63fe0ac70c27ce9b4b40490be37578cde (
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
|
<!DOCTYPE html>
<html>
{{ template "head.html" }}
<body>
<header>
<nav>
<a href="/index.html">HOME</a>
<a href="/add_recipes">add recipe</a>
</nav>
<h1>{{.Title}}</h1>
</header>
<main>
<pre contenteditable="true" id="editor">{{.Text}}</pre>
<button onclick="save()">save</button>
<a href="/recipe?id={{.Id}}"><button>back</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>
|