diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-20 19:47:08 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-21 12:48:15 +0100 |
commit | a1fe768c6d40c7c885db1c9843c61527cbe583e3 (patch) | |
tree | c397e7d6796049607d6348c538621d1e8809a847 /views/forum_edit.ejs | |
parent | d1318d147297161691f5048e1f2cb4e516159144 (diff) | |
download | server-a1fe768c6d40c7c885db1c9843c61527cbe583e3.tar.gz |
Rewrite view templates to use Pug engine.
Diffstat (limited to 'views/forum_edit.ejs')
-rw-r--r-- | views/forum_edit.ejs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/views/forum_edit.ejs b/views/forum_edit.ejs deleted file mode 100644 index 7ed1414..0000000 --- a/views/forum_edit.ejs +++ /dev/null @@ -1,11 +0,0 @@ -<%- 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> |