{{!
postform.mustache -- the form for posting
template parameters:
- post_url ( the url of the post form )
- reference ( the post we are replying to, or empty string if it's an op )
- button ( the text for the reply button )
}}
<form action="{{post_url}}" enctype="multipart/form-data" name="post" method="post">
<input type="hidden" name="reference" value="{{reference}}" />
<input type="hidden" name="captcha" value="" id="captcha_input" />
<table class="postform">
<tbody>
<tr>
<th>
Name
</th>
<td>
<input type="text" name="name" value="" />
</td>
</tr>
Subject
<input type="text" name="subject" value="" />
<input type="submit" value="{{button}}" />
Comment
<textarea type="text" name="message" cols=35 rows=5></textarea>
File
<input type="file" name="attachment" />
Captcha
<img id="captcha_img" src="" alt="captcha" />
<input type="text" name="captcha_solution" />
</tbody>
</table>
</form>