The version of vichan running on lainchan.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 строки
2.1KB

  1. <form action="{{ config.post_url }}" method="post" id="report_form">
  2. {% if error %}
  3. <div class="error">
  4. <strong>{{ error|e }}</strong>
  5. </div>
  6. {% endif %}
  7. <input type="hidden" name="board" value="{{ board.uri }}">
  8. <input type="hidden" name="{{ post|e }}" value="1">
  9. {% if global %}
  10. <input type="hidden" name="global" value="1">
  11. <div><h1>Attention!</h1><p>This form is only for reporting <strong>child pornography</strong>, <strong>bot spam</strong> and <strong>credit card numbers, social security numbers or banking information</strong>. DMCA requests and all other deletion requests <em>MUST</em> be sent via email to admin@8chan.co.</p><p>8chan is unmoderated and allows posts without collecting <em>ANY</em> information from the poster less the details of their post. Furthermore, all boards on 8chan are user created and not actively monitored by anyone but the board creator.</p><p>8chan has a small volunteer staff to handle this queue, please do not waste their time by filling it with nonsense! <em>If you made a report with this tool and the post was not deleted, <strong>do not make the report again!</strong> Email admin@8chan.co instead.</em> Abuse of the global report system could lead to address blocks against your IP from 8chan.</p><p>Again, 8chan's global volunteers <em>do not</em> handle board specific issues. You most likely want to click "Report" instead to reach the creator and volunteers he assigned to this board.</p>
  12. {% endif %}
  13. <p>{% trans %}Enter reason below...{% endtrans %}</p>
  14. <input type="text" id="reason" name="reason" value="{{ reason_prefill|e|addslashes }}">
  15. {% if config.report_captcha %}
  16. <p>{% trans %}To submit your report, please fill out the CAPTCHA below.{% endtrans %}</p>
  17. {{ captcha['html'] }}<br/>
  18. <input class="captcha_text" name="captcha_text" size="25" maxlength="6" autocomplete="off" type="text" value="">
  19. <input class="captcha_cookie" name="captcha_cookie" type="hidden" autocomplete="off" value="{{ captcha['cookie']|e }}"><br/>
  20. {% endif %}
  21. <input name="report" value="{% trans %}Submit{% endtrans %}" type="submit">
  22. </form>