28 lines
No EOL
1.1 KiB
Text
28 lines
No EOL
1.1 KiB
Text
<form enctype='multipart/form-data' method='POST' action='/api/form/comment'>
|
|
<h1 class='content-header'>Comments</h1>
|
|
<div class='form-message'></div>
|
|
<input name='targetId' hidden value='<%= id %>'>
|
|
<input name='targetType' hidden value='<%= route %>'>
|
|
<textarea class='form-input' name='content'></textarea>
|
|
<br />
|
|
<input class='form-input' type='submit'>
|
|
|
|
<% for (let comment of comments) { %>
|
|
<div class='comment'>
|
|
<div class='avatar'>
|
|
<img src='/pfp/<%= comment.username %>.png' class='avatar-img'>
|
|
<div>
|
|
<div><b>
|
|
<a class='link' href='/client/user?id=<%= comment.username %>'>
|
|
<%= comment.username %>
|
|
</a>
|
|
</b></div>
|
|
<div><b>
|
|
<%= (new Date(comment.date)+'').split(/(GMT|UTC)/g)[0] %>
|
|
</b></div>
|
|
<pre><%= comment.content %></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% } %>
|
|
</form> |