diff options
-rw-r--r-- | data/templates/recipe_edit.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index 04804b4..d622ce1 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -15,11 +15,18 @@ <main> <p>Recipe ID: {{.Id}}</p> - <pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre> - <button>save</button> <!-- TODO add functionality --> + <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre> + <button onclick="save()">save</button> <a href="/recipe?id={{.Id}}"><button>cancel</button></a> - <button style="background-color: red">delete</button> <!-- TODO add functionality --> {{ 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> |