diff options
author | xengineering <me@xengineering.eu> | 2024-02-17 19:36:19 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 14:00:10 +0100 |
commit | 78116f571ad4801bd10c51077b50ec87f1f68be7 (patch) | |
tree | 4f860490e73376d9d0eb27b22c80bc83272255c8 /view/html/recipe-edit.html | |
parent | e105822a4f2227ca97853ac1bf106f8d204d6837 (diff) | |
download | ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.tar ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.tar.zst ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.zip |
view: Send forms as JSON with JavaScript
While forms can be send without JavaScript this new approach has the
benefit that the whole data is send as one JSON.
This JSON format can also be used for an API or testing.
Diffstat (limited to 'view/html/recipe-edit.html')
-rw-r--r-- | view/html/recipe-edit.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index 7a50905..2513be8 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -10,7 +10,9 @@ </header> <body> <main> - <form> + <form action="/recipe?method=update"> + <input type="hidden" name="id" value="{{.Id}}"> + <p> <label>Title</label> <input type="text" name="title" value="{{.Title}}"> @@ -31,10 +33,12 @@ <input type="text" name="notes" value="{{.Notes}}"> </p> + <button type="submit">save</button> <a href="/recipe/{{.Id}}"><button type="button">cancel</button></a> </form> </main> {{ template "footer" }} + <script src="/static/view/static/ceres.js"></script> </body> </html> {{end}} |