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

<div id="content">

<table id="thread_form">
  <tr>
    <td>
      <form>
        <input type="text" name="title" placeholder="Title">
        <textarea name="comment" placeholder="Enter your comment"></textarea><br>
        <div class="inputs">
          <input name="files" type="file" multiple>
          <select name="keyword" id="keywords">
          </select>
          <input type="submit" value="POST" />
          <div class="loader"></div>
        </div>
        <div class="errors"></div>
      </form>
    </td>
  </tr>
</table>

</div>

<% include ../partials/footer %>