summaryrefslogtreecommitdiff
path: root/views/forum_reply.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/forum_reply.ejs')
-rw-r--r--views/forum_reply.ejs23
1 files changed, 0 insertions, 23 deletions
diff --git a/views/forum_reply.ejs b/views/forum_reply.ejs
deleted file mode 100644
index db777b6..0000000
--- a/views/forum_reply.ejs
+++ /dev/null
@@ -1,23 +0,0 @@
-<%- include('header', { title: thread.subject }) -%>
-<style>
-input, textarea { width: 100%; max-width: 45em; }
-table { max-width: 50em; }
-table .author { border-right: none; }
-table .time { border-left: none; font-weight: normal; }
-table .command { border: none; }
-</style>
-<table class="post">
-<tr>
-<th class="author"><%= post.author_name %>
-<th class="r time"><%= post.ctime %> <%= post.edited ? "(edited " + post.mtime + ")" : "" %>
-<tr>
-<td class="body" colspan="2"><%- post.body %></td>
-</table>
-<form action="/forum/reply/<%- thread.thread_id %>" method="post">
-<p>
-Reply:
-<br>
-<textarea name="body" rows="15" cols="80" maxlength="32000" required autofocus></textarea>
-<p>
-<button type="submit">Submit</button>
-</form>