add post retry template (initial)
This commit is contained in:
parent
566c88dc28
commit
b16b0c72b0
43
contrib/templates/default/post_retry.mustache
Normal file
43
contrib/templates/default/post_retry.mustache
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<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}}
|
||||||
|
<input type="hidden" name="attachment" filename="{{attachment_filename}}" value="{{attachment}}" />
|
||||||
|
{{/attachment}}
|
||||||
|
<input type="hidden" name="reference" value="{{reference}}" />
|
||||||
|
<input type="hidden" name="name" value="{{name}}" />
|
||||||
|
<input type="hidden" name="subject" value="{{subject}}" />
|
||||||
|
<div id="postform-outer">
|
||||||
|
<div id="postform-inner">
|
||||||
|
<table class="postform">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Captcha
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<img id="captcha_img" src="{{prefix}}captcha/{{captcha_id}}.png" alt="captcha" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Solution
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
<input type="text" name="captcha" />
|
||||||
|
<input type="submit" value="Post" class="button" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user