2022-05-04 23:09:46 +00:00
|
|
|
{% extends "default.html" %}
|
2022-11-19 22:20:38 +00:00
|
|
|
{% block pagetitle %}Contact{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1 class="article-title">Contact {{SITE_NAME}} Admins</h1>
|
2022-10-01 10:14:46 +00:00
|
|
|
{% if v %}
|
2023-08-11 21:50:23 +00:00
|
|
|
<form id="contactform" action="/contact" method="post" enctype="multipart/form-data" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
2022-10-01 10:14:46 +00:00
|
|
|
<label for="input-message" class="mt-3">Your message</label>
|
2023-01-24 05:10:16 +00:00
|
|
|
<input hidden name="formkey" value="{{v|formkey}}">
|
2023-02-27 15:02:35 +00:00
|
|
|
<textarea autocomplete="off" maxlength="10000" id="input-message" form="contactform" name="message" class="file-ta form-control" required></textarea>
|
2023-10-05 14:57:22 +00:00
|
|
|
<div class="format-btns">
|
2023-10-05 10:57:32 +00:00
|
|
|
{{macros.emoji_btn('input-message')}}
|
|
|
|
{{macros.gif_btn('input-message')}}
|
2024-02-12 13:36:50 +00:00
|
|
|
{{macros.file_btn('file-upload-contact')}}
|
2023-10-17 18:42:29 +00:00
|
|
|
<input type="submit" value="Submit" class="btn btn-primary ml-auto">
|
2023-02-27 15:02:35 +00:00
|
|
|
</div>
|
2022-10-01 10:14:46 +00:00
|
|
|
</form>
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-11-15 19:14:29 +00:00
|
|
|
{% include "modals/emoji.html" %}
|
2023-08-14 14:28:27 +00:00
|
|
|
{% include "modals/gif.html" %}
|
2024-01-23 12:25:15 +00:00
|
|
|
|
|
|
|
{% if SITE_NAME == 'rDrama' %}
|
|
|
|
<h5 class="mt-5">If you can see this line, we haven't been contacted by any law enforcement or governmental organizations in 2024 yet.</h5>
|
|
|
|
{% endif %}
|
2022-10-01 10:14:46 +00:00
|
|
|
{% else %}
|
2022-10-08 00:44:02 +00:00
|
|
|
<h4>by email: {{EMAIL}}</h4>
|
2022-10-01 10:14:46 +00:00
|
|
|
{% endif %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% endblock %}
|