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-05-04 23:09:46 +00:00
|
|
|
|
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>
|
|
|
|
<div class="mt-1">
|
2023-10-05 10:57:32 +00:00
|
|
|
{{macros.emoji_btn('input-message')}}
|
|
|
|
{{macros.gif_btn('input-message')}}
|
|
|
|
{{macros.file_btn('file-upload')}}
|
2023-03-07 00:21:08 +00:00
|
|
|
<input type="submit" value="Submit" class="btn btn-primary fl-r">
|
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
|
|
|
|
2023-07-30 07:12:26 +00:00
|
|
|
<p class="my-3">Warrant Canary has been moved to <a href="/search/posts/?q=%22Monthly%20Website%20Stats%20Post%22">Monthly Website Stats Posts</a>.</p>
|
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" %}
|
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 %}
|