diff options
author | Michael McVady <femtonaut@gmail.com> | 2024-01-12 15:17:14 -0600 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2024-01-12 15:17:14 -0600 |
commit | 7d9765df281da6ad6debe07b2047affec3ef2e17 (patch) | |
tree | 21fd35283ce1f6538a1129811a6f3a491379c84f /assets/entry_edit.html | |
parent | f810fe19b8152a32254133680e3d6f506e2277e6 (diff) |
Hack in edit
Diffstat (limited to 'assets/entry_edit.html')
-rw-r--r-- | assets/entry_edit.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/entry_edit.html b/assets/entry_edit.html index 492735a..01e5cd5 100644 --- a/assets/entry_edit.html +++ b/assets/entry_edit.html @@ -1,9 +1,9 @@ -<form action="/form" method="post"> +<form action="/entries/%s" method="post"> <input type="text" id="id" name="id" value="%s" placeholder="uuid"/> <input type="text" id="title" name="title" value="%s" placeholder="title"/> <textarea id="body" name="body" rows="50" cols="100">%s</textarea> <br> -<input type="submit" value="Preview"> -<input type="submit" value="Save (N/A)"> +<input type="button" value="Preview"> +<input type="submit" value="Save"> </form> |