27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Contact{% endblock %}
|
|
{% block content %}
|
|
<h1 class="article-title">Contact {{SITE_NAME}} Admins</h1>
|
|
{% if v %}
|
|
<form id="contactform" action="/contact" method="post" enctype="multipart/form-data" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
|
|
|
<label for="input-message" class="mt-3">Your message</label>
|
|
<input hidden name="formkey" value="{{v|formkey}}">
|
|
<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')}}
|
|
<input type="submit" value="Submit" class="btn btn-primary ml-auto">
|
|
</div>
|
|
</form>
|
|
|
|
<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>
|
|
|
|
{% include "modals/emoji.html" %}
|
|
{% include "modals/gif.html" %}
|
|
{% else %}
|
|
<h4>by email: {{EMAIL}}</h4>
|
|
{% endif %}
|
|
{% endblock %}
|