blob: 28899057800647a87ddf17504926cd165aa6213e (
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
|
<% 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>
<div class="errors"></div>
</form>
</td>
</tr>
</table>
</div>
<% include ../partials/footer %>
|