aboutsummaryrefslogtreecommitdiff
path: root/assets/entry_edit.html
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2024-01-02 21:21:56 -0600
committerMichael McVady <femtonaut@gmail.com>2024-01-02 21:21:56 -0600
commit6889931cdb9a7831482779976b1d3bb8d6e23247 (patch)
treecccb56fa16d13489fcda1564be18eca069df9ec9 /assets/entry_edit.html
parent29e921557ec6d275b41cc5e8b729037aa84768b9 (diff)
Handle errors
Diffstat (limited to 'assets/entry_edit.html')
-rw-r--r--assets/entry_edit.html17
1 files changed, 7 insertions, 10 deletions
diff --git a/assets/entry_edit.html b/assets/entry_edit.html
index bc2a5e4..492735a 100644
--- a/assets/entry_edit.html
+++ b/assets/entry_edit.html
@@ -1,12 +1,9 @@
<form action="/form" method="post">
-<dl>
-<dt><h3>id</h3></dt>
-<dd><input type="text" id="id" name="id" value="%s"></input></dd>
-<dt><h3>title</h3></dt>
-<dd><input type="text" id="title" name="title" value="%s"></input></dd>
-<dt><h3>body</h3></dt>
-<dd><textarea id="body" name="body" rows="50" cols="100">%s</textarea></dd>
-<dd><input type="submit" value="Preview"></dd>
-<dd><input type="submit" value="Save (N/A)"></dd>
-</dl>
+<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)">
</form>
+