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 %}
2024-05-16 20:17:52 +00:00
< div id = "contact" class = "px-2 px-md-0" >
< h3 class = "text-lg-sm" > Contact {{SITE_NAME}} Admins< / h3 >
2024-04-07 04:09:43 +00:00
{% if v %}
2024-05-16 21:05:31 +00:00
< form id = "contactform" action = "/contact" method = "post" enctype = "multipart/form-data" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHRReload(this)" >
2024-04-07 04:09:43 +00:00
< label for = "input-message" class = "mt-3" > Your message< / label >
< input hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
< textarea autocomplete = "off" maxlength = "10000" id = "input-message" form = "contactform" name = "message" class = "file-ta form-control" required > < / textarea >
< div class = "format-btns" >
{{macros.emoji_btn('input-message')}}
{{macros.gif_btn('input-message')}}
{{macros.file_btn('file-upload-contact')}}
< input type = "submit" value = "Submit" class = "btn btn-primary ml-auto" >
< / div >
< / form >
2022-05-04 23:09:46 +00:00
2024-04-07 04:09:43 +00:00
{% include "modals/emoji.html" %}
{% include "modals/gif.html" %}
2024-08-01 17:00:11 +00:00
{% if SITE_NAME == 'rDrama' %}
< h5 class = "mt-5" > Warrant Canary has been moved to < a href = "/search/posts/?q=%22Monthly%20Website%20Stats%20Post%22&sort=new&t=all" > Monthly Website Stats Posts< / a > .< / h5 >
{% endif %}
2024-04-07 04:09:43 +00:00
{% else %}
< h4 > by email: {{EMAIL}}< / h4 >
2024-01-23 12:25:15 +00:00
{% endif %}
2024-05-16 20:17:52 +00:00
{% if listing %}
< h3 class = "text-lg-sm mt-5 pb-0 mb-0" style = "margin-bottom:-14px !important" > Previous Contacts< / h3 >
{% with comments=listing %}
{% include "comments.html" %}
{% endwith %}
{% endif %}
2024-04-07 04:09:43 +00:00
< / div >
2024-05-16 21:12:28 +00:00
{% if v and v.is_underage %}
< script defer src = "{{'js/underage.js' | asset}}" > < / script >
{% endif %}
2022-05-04 23:09:46 +00:00
{% endblock %}
2024-05-16 20:17:52 +00:00
{% block pagenav %}
{% if listing %}
{{macros.pagination()}}
{% endif %}
{% endblock %}