Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/templates/default/postform.mustache

94 lines
2.9 KiB
Plaintext
Raw Normal View History

2015-08-04 19:03:44 +05:00
{{!
2015-08-05 16:45:16 +05:00
postform.mustache -- the form for posting
template parameters:
2015-08-04 19:03:44 +05:00
- 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 )
2016-02-01 21:06:01 +05:00
- files ( bool, do we allow attachments ? )
2016-02-22 02:51:56 +05:00
- csrf ( csrf token )
2015-08-04 19:03:44 +05:00
}}
<form action="{{post_url}}" enctype="multipart/form-data" name="post" method="post">
2016-02-22 02:51:56 +05:00
{{{csrf}}}
2016-04-30 21:25:15 +05:00
<input type="hidden" name="reference" value="{{reference}}" id="postform_reference"/>
<div id="postform-outer">
<div id="postform-inner">
<table class="postform">
<tbody>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{name}}{{/i18n.Translations}}
</th>
<td>
<span>
<input type="text" name="name" value="" id="postform_name" />
<span id="postform_msg"></span>
</span>
</td>
</tr>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{subject}}{{/i18n.Translations}}
</th>
<td>
2016-05-01 19:42:06 +05:00
<input type="text" name="subject" value="" id="postform_subject" />
<input type="submit" value="{{button}}" class="button" id="postform_submit" />
</td>
</tr>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{comment}}{{/i18n.Translations}}
</th>
<td>
2015-11-08 03:20:32 +05:00
<textarea id="postform_message" name="message" cols=40 rows=5></textarea>
</td>
</tr>
2016-02-01 21:06:01 +05:00
{{#files}}
<tr>
<th>
{{#i18n.Translations}}{{file}}{{/i18n.Translations}}
</th>
<td>
2016-02-29 18:35:26 +05:00
<input class="postform_attachment" id="postform_attachments" type="file" name="attachment_uploaded" multiple />
</td>
</tr>
2016-02-01 21:06:01 +05:00
{{/files}}
2015-11-09 23:59:54 +05:00
<tr>
2016-02-01 21:06:01 +05:00
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{dubs}}{{/i18n.Translations}}
2015-11-09 23:59:54 +05:00
</th>
<td>
<input type="checkbox" name="dubs" />
</td>
</tr>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{captcha}}{{/i18n.Translations}}
</th>
<td>
2015-08-08 22:19:31 +05:00
<img id="captcha_img" src="{{prefix}}captcha/img" alt="captcha" />
</td>
</tr>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{solution}}{{/i18n.Translations}}
</th>
<td>
2016-05-01 19:42:06 +05:00
<input type="text" name="captcha" autocomplete="off" id="captcha_solution" />
</td>
</tr>
2016-10-07 17:26:50 +05:00
<!-- <tr>
2016-05-17 11:24:46 +05:00
<th>
{{#i18n.Translations}}{{cuckoo_pow}}{{/i18n.Translations}}
</th>
<td>
2016-05-17 19:33:14 +05:00
<input type="text" name="pow" autocomplete="off" id="miner_result" /><input id="start_miner" class="button" type="button" value="{{#i18n.Translations}}{{start_mining}}{{/i18n.Translations}}"/>
2016-05-17 11:24:46 +05:00
</td>
2016-10-07 17:26:50 +05:00
</tr> -->
</tbody>
</table>
</div>
</div>
2015-08-04 19:03:44 +05:00
</form>
2015-11-08 03:20:32 +05:00