diff options
Diffstat (limited to 'views/forum_edit.ejs')
-rw-r--r-- | views/forum_edit.ejs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/views/forum_edit.ejs b/views/forum_edit.ejs new file mode 100644 index 0000000..2f3c3ff --- /dev/null +++ b/views/forum_edit.ejs @@ -0,0 +1,10 @@ +<%- include('header', { title: "Edit Post" }) %> +<style> +input, textarea { width: 100%; max-width: 45em; } +</style> +<form action="/forum/edit/<%- post.post_id %>" method="post"> +<p> +<textarea name="body" rows="20" cols="80" maxlength="32000" required autofocus><%= post.body %></textarea> +<p> +<button type="submit">Submit</button> +</form> |