rDrama/files/templates/contact.html

26 lines
1.1 KiB
HTML
Raw Normal View History

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>
{% 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)">
<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">
{{macros.emoji_btn('input-message')}}
{{macros.gif_btn('input-message')}}
{{macros.file_btn('file-upload')}}
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>
</form>
2022-05-04 23:09:46 +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
{% include "modals/emoji.html" %}
2023-08-14 14:28:27 +00:00
{% include "modals/gif.html" %}
{% else %}
2022-10-08 00:44:02 +00:00
<h4>by email: {{EMAIL}}</h4>
{% endif %}
2022-05-04 23:09:46 +00:00
{% endblock %}