mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 12:33:29 +01:00
* ticket/11566: [ticket/11566] Subsilver template error displayed after table headers [ticket/11566] Remove extra pair of brackets from conditional statement [ticket/11566] Check that guest doesn't have reporting permission by default [ticket/11566] Add captcha to report post template in subsilver [ticket/11566] Use the new constant CONFIRM_REPORT for captcha init [ticket/11566] Rename var to $visual_confirmation_response [ticket/11566] Revert forum permission changes [ticket/11566] Use language variable instead of hardcode [ticket/11566] add tests for reporting post [ticket/11566] add captcha reset and hidden fields [ticket/11566] display error instead of trigger_error [ticket/11566] add error in template [ticket/11566] add error functionality [ticket/11566] add interface for captcha Conflicts: phpBB/report.php
56 lines
2.0 KiB
HTML
56 lines
2.0 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<h2 class="titlespace"><!-- IF S_REPORT_POST -->{L_REPORT_POST}<!-- ELSE -->{L_REPORT_MESSAGE}<!-- ENDIF --></h2>
|
|
|
|
<form method="post" action="{S_REPORT_ACTION}" id="report">
|
|
<div class="panel">
|
|
<div class="inner">
|
|
|
|
<div class="content">
|
|
<p><!-- IF S_REPORT_POST -->{L_REPORT_POST_EXPLAIN}<!-- ELSE -->{L_REPORT_MESSAGE_EXPLAIN}<!-- ENDIF --></p>
|
|
|
|
<fieldset>
|
|
<!-- IF ERROR --><dl><dd class="error">{ERROR}</dd></dl><!-- ENDIF -->
|
|
<dl class="fields2">
|
|
<dt><label for="reason_id">{L_REASON}{L_COLON}</label></dt>
|
|
<dd><select name="reason_id" id="reason_id" class="full"><!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.DESCRIPTION}</option><!-- END reason --></select></dd>
|
|
</dl>
|
|
<!-- IF S_CAN_NOTIFY -->
|
|
<dl class="fields2">
|
|
<dt><label for="notify1">{L_REPORT_NOTIFY}{L_COLON}</label><br /><span>{L_REPORT_NOTIFY_EXPLAIN}</span></dt>
|
|
<dd>
|
|
<label for="notify1"><input type="radio" name="notify" id="notify1" value="1" <!-- IF not S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
|
<label for="notify0"><input type="radio" name="notify" id="notify0" value="0" <!-- IF S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_NO}</label>
|
|
</dd>
|
|
</dl>
|
|
<!-- ENDIF -->
|
|
<dl class="fields2">
|
|
<dt><label for="report_text">{L_MORE_INFO}{L_COLON}</label><br /><span>{L_CAN_LEAVE_BLANK}</span></dt>
|
|
<dd><textarea name="report_text" id="report_text" rows="10" cols="76" class="inputbox">{REPORT_TEXT}</textarea></dd>
|
|
</dl>
|
|
<!-- IF CAPTCHA_TEMPLATE -->
|
|
<!-- INCLUDE {CAPTCHA_TEMPLATE} -->
|
|
<!-- ENDIF -->
|
|
</fieldset>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel">
|
|
<div class="inner">
|
|
|
|
<div class="content">
|
|
<fieldset class="submit-buttons">
|
|
<input type="submit" name="submit" class="button1" value="{L_SUBMIT}" />
|
|
<input type="submit" name="cancel" class="button2" value="{L_CANCEL}" />
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<!-- INCLUDE overall_footer.html -->
|