summaryrefslogtreecommitdiff
path: root/views/forum_edit.ejs
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-11-19 02:45:51 +0100
committerTor Andersson <tor@ccxvii.net>2021-11-19 02:48:53 +0100
commit1a71184bcbf714d266e80d186fd666d393ed5981 (patch)
treecac3322f867a501ac6c3c160c47ee3efb875b1a1 /views/forum_edit.ejs
parentacc03c79e0d1a1265922b05abafd1c4a18a627a0 (diff)
downloadserver-1a71184bcbf714d266e80d186fd666d393ed5981.tar.gz
Clean up stylesheets. Don't show options in game lists.
Diffstat (limited to 'views/forum_edit.ejs')
-rw-r--r--views/forum_edit.ejs5
1 files changed, 3 insertions, 2 deletions
diff --git a/views/forum_edit.ejs b/views/forum_edit.ejs
index 2f3c3ff..7ed1414 100644
--- a/views/forum_edit.ejs
+++ b/views/forum_edit.ejs
@@ -1,10 +1,11 @@
-<%- include('header', { title: "Edit Post" }) %>
+<%- 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>
+<textarea name="body" rows="20" cols="80" maxlength="32000" required autofocus>
+<%= post.body %></textarea>
<p>
<button type="submit">Submit</button>
</form>