blob: 2b1871e7ce80915f4790c5e1d94b28cf8b07c73a (
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" maxlength="64">
<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 %>
|