summaryrefslogtreecommitdiff
path: root/views/pages/editcomment.ejs
blob: 97a8402269893e6070b8048ff5e0361dd12fa337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<% include ../partials/header %>

<div id="content">

<table id="comment_form">
  <tr>
    <td>
      <form>
        <textarea name="comment" placeholder="Enter your comment"></textarea><br>
        <div class="inputs">
          <input type="submit" value="POST" />
        </div>
        <div class="errors"></div>
      </form>
    </td>
  </tr>
</table>

</div>

<% include ../partials/footer %>