diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/recipe_edit.html | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index fc1d74c..6ef41f8 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -14,18 +14,13 @@ </header> <main> - <pre contenteditable="true" id="editor">{{.Text}}</pre> - <button onclick="save()">save</button> - <a href="/recipe?id={{.Id}}"><button>back</button></a> + <form action="/recipe/edit" method="POST"> + <input type="hidden" name="id" value="{{.Id}}" /> + <textarea style="resize:none;font-family:monospace, monospace;font-size: 1rem;" rows="18" wrap="soft" name="text">{{.Text}}</textarea> + <button type="submit">save</button> + <a href="/recipe?id={{.Id}}"><button type="button">cancel</button></a> + </form> {{ 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> |