additional_plugins/serendipity_event_mobile_output/templates/android.app/commentform.tpl
2011-12-13 12:29:05 +01:00

68 lines
2.7 KiB
Smarty

<div id="serendipityCommentFormC" class="serendipityCommentForm">
<hr/>
<div id="serendipity_replyform_0"></div>
<a id="serendipity_CommentForm"></a>
<form id="serendipity_comment" action="{$commentform_action}#feedback" method="post">
<div><input type="hidden" name="serendipity[entry_id]" value="{$commentform_id}" /></div>
<table border="0" width="150px" cellpadding="3">
<tr>
<td class="commentsLabel">
<label for="serendipity_commentform_name">{$CONST.NAME}</label><br/>
<input type="text" id="commentform_name" name="serendipity[name]" value="{$commentform_name}" size="30" />
</td>
</tr>
<tr>
<td class="commentsLabel">
<label for="serendipity_commentform_email">{$CONST.EMAIL}</label><br/>
<input type="text" id="commentform_email" name="serendipity[email]" value="{$commentform_email}" size="30" />
</td>
</tr>
<tr>
<td class="commentsLabel">
<label for="serendipity_commentform_url">{$CONST.HOMEPAGE}</label><br/>
<input type="text" id="commentform_url" name="serendipity[url]" value="{$commentform_url}" size="30" />
</td>
</tr>
<tr>
<td class="commentsLabel">
<label for="serendipity_replyTo">{$CONST.IN_REPLY_TO}</label><br/>
{$commentform_replyTo}
</td>
</tr>
<tr>
<td class="commentsLabel">
<label for="serendipity_commentform_comment">{$CONST.COMMENT}</label><br/>
<textarea rows="10" cols="38" id="serendipity_commentform_comment" name="serendipity[comment]">{$commentform_data}</textarea><br />
{serendipity_hookPlugin hook="frontend_comment" data=$commentform_entry}
</td>
</tr>
{if $is_commentform_showToolbar}
<tr>
<td class="serendipity_commentsLabel">
<input id="checkbox_remember" type="checkbox" name="serendipity[remember]" {$commentform_remember} /><label for="checkbox_remember">{$CONST.REMEMBER_INFO}</label>
{if $is_allowSubscriptions}
<br />
<input id="checkbox_subscribe" type="checkbox" name="serendipity[subscribe]" {$commentform_subscribe} /><label for="checkbox_subscribe">{$CONST.SUBSCRIBE_TO_THIS_ENTRY}</label>
{/if}
</td>
</tr>
{/if}
{if $is_moderate_comments}
<tr>
<td class="serendipity_commentsValue serendipity_msg_important">{$CONST.COMMENTS_WILL_BE_MODERATED}</td>
</tr>
{/if}
<tr>
<td><input type="submit" name="serendipity[submit]" value="{$CONST.SUBMIT_COMMENT}" /> <input type="submit" id="serendipity_preview" name="serendipity[preview]" value="{$CONST.PREVIEW}" /></td>
</tr>
</table>
</form>
</div>