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/post_retry.mustache

49 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-10-20 17:41:46 +05:00
<html>
<head>
<title> try again </title>
<meta charset="utf-8" />
<link rel="stylesheet" href="{{prefix}}static/site.css" />
<link rel="stylesheet" href="{{prefix}}static/user.css" />
</head>
<body>
<form enctype="multipart/form-data" name="post" method="post">
{{#attachment}}
2015-10-20 18:54:37 +05:00
<input type="hidden" name="attachment_data" value="{{attachment}}" />
<input type="hidden" name="attachment_filename" value="{{attachment_filename}}" />
<input type="hidden" name="attachment_mime" value="{{attachment_type}}" />
2015-10-20 17:41:46 +05:00
{{/attachment}}
<input type="hidden" name="reference" value="{{reference}}" />
<input type="hidden" name="name" value="{{name}}" />
<input type="hidden" name="subject" value="{{subject}}" />
2015-10-20 17:55:09 +05:00
<input type="hidden" name="captcha_id" value="{{captcha_id}}" />
2015-10-20 17:56:38 +05:00
<input type="hidden" name="message" value="{{message}}" />
2015-10-20 17:41:46 +05:00
<div id="postform-outer">
<div id="postform-inner">
2015-10-20 17:55:09 +05:00
<div>{{fail_message}}</div>
2015-10-20 17:41:46 +05:00
<table class="postform">
<tbody>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{captcha}}{{/i18n.Translations}}
2015-10-20 17:41:46 +05:00
</th>
<td>
<img id="captcha_img" src="{{prefix}}captcha/{{captcha_id}}.png" alt="captcha" />
</td>
</tr>
<tr>
<th>
2016-02-28 17:40:16 +05:00
{{#i18n.Translations}}{{solution}}{{/i18n.Translations}}
2015-10-20 17:41:46 +05:00
</th>
<td>
<input type="text" name="captcha" />
<input type="submit" value="Post" class="button" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
</body>
2016-02-28 17:40:16 +05:00
</html>