diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-09 16:35:49 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-09 22:59:49 +0100 |
commit | eb12dd7700dfceff88d8d68acc720d86cdf90e05 (patch) | |
tree | 6a365a0ba788e9b6e61c3a34e059ee4e75da2bfe /views/forum_reply.ejs | |
parent | 7777850fd868b6b24f64dcd6b5942cc6c4423c95 (diff) | |
download | server-eb12dd7700dfceff88d8d68acc720d86cdf90e05.tar.gz |
Add forum.
Diffstat (limited to 'views/forum_reply.ejs')
-rw-r--r-- | views/forum_reply.ejs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/views/forum_reply.ejs b/views/forum_reply.ejs new file mode 100644 index 0000000..bf27492 --- /dev/null +++ b/views/forum_reply.ejs @@ -0,0 +1,25 @@ +<%- include('header', { title: thread.subject }) %> +<style> +input, textarea { width: 100%; max-width: 45em; } +table { width: 100%; max-width: 50em; } +td.body { white-space: pre-wrap; padding: 10px 10px; } +th.author { border-right: none; } +th.time { text-align: right; border-left: none; font-weight: normal; } +</style> +<table> +<tr> +<th class="nowrap author"><%= post.author_name %> +<th class="nowrap 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 + placeholder="Say something nice."></textarea> +<p> +<button type="submit">Submit</button> +</form> |