diff options
author | Michael McVady <femtonaut@gmail.com> | 2024-01-16 21:32:22 -0600 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2024-01-16 21:32:22 -0600 |
commit | 2d92280f0e7e605911da199757fa33d2b5089b0a (patch) | |
tree | 49987dc668ea478dfee21310c05feb02261e90f2 /assets | |
parent | 7906e579ce5023ec85070b40a3d96bbcaa07d166 (diff) |
Support creating new entries
Diffstat (limited to 'assets')
-rw-r--r-- | assets/entry_edit.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/assets/entry_edit.html b/assets/entry_edit.html index 9982731..f87e9cf 100644 --- a/assets/entry_edit.html +++ b/assets/entry_edit.html @@ -1,9 +1,9 @@ <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> +<input type="text" id="title" name="title" value="%s" placeholder="title" style="width: 100%;"/> +<textarea id="body" name="body" rows="50" style="width: 100%;">%s</textarea> <br> -<!--input type="button" value="Preview"--> -<input type="submit" value="Update"> +<input type="button" value="Preview (N/A)"> +<input type="submit" value="Save"> +<input type="button" value="Delete (N/A)"> </form> |