<form enctype='multipart/form-data' method='POST' action='/api/form/comment'> <h1>Comments</h1> <div class='form-message'></div> <input name='targetId' hidden value='<%= id %>'> <input name='targetType' hidden value='<%= route %>'> <textarea name='content'></textarea> <input type='submit'> <% for (let comment of comments) { %> <div class='comment'> <div class='pfp-wrapper'> <img src='/pfp/<%= comment.username %>.png' class='avatar'> <div> <div><b> <a 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>