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 %}
2022-12-11 23:44:34 +00:00
{% if msg %}{{macros.alert(msg, false)}}{% endif %}
2022-05-04 23:09:46 +00:00
< h1 class = "article-title" > Contact {{SITE_NAME}} Admins< / h1 >
2022-10-01 10:14:46 +00:00
{% if v %}
2023-01-29 09:30:30 +00:00
< form id = "contactform" action = "/contact" method = "post" enctype = "multipart/form-data" >
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" >
< label class = "btn btn-secondary m-0 format" data-nonce = "{{g.nonce}}" data-onclick = "loadEmojis('input-message')" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" >
< i class = "fas fa-smile-beam" > < / i >
< / label >
2023-05-05 21:45:25 +00:00
2023-02-27 15:02:35 +00:00
{{macros.file_input('file-uplod', False)}}
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
2022-10-29 00:38:39 +00:00
< p class = "my-3" > 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 > .< / p >
2022-05-04 23:09:46 +00:00
2022-11-15 19:14:29 +00:00
{% include "modals/emoji.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 %}