2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
{% block title %}
< title > {{SITE_NAME}} - Contact< / title >
{% endblock %}
{% block content %}
{% if msg %}
< div class = "alert alert-success alert-dismissible fade show my-3" role = "alert" >
< i class = "fas fa-check-circle my-auto" aria-hidden = "true" > < / i >
< span >
{{msg}}
< / span >
< button class = "close" data-bs-dismiss = "alert" aria-label = "Close" >
2022-09-08 17:24:00 +00:00
< span aria-hidden = "true" > < i class = "far fa-times" > < / i > < / span >
2022-05-04 23:09:46 +00:00
< / button >
< / div >
{% endif %}
< h1 class = "article-title" > Contact {{SITE_NAME}} Admins< / h1 >
< p > Use this form to contact {{SITE_NAME}} Admins.< / p >
< form id = "contactform" action = "/send_admin" method = "post" enctype = "multipart/form-data" >
< label for = "input-message" class = "mt-3" > Your message< / label >
< input type = "hidden" name = "formkey" value = "{{v.formkey}}" >
< textarea autocomplete = "off" maxlength = "10000" id = "input-message" form = "contactform" name = "message" class = "form-control" required > < / textarea >
< label class = "btn btn-secondary format m-0 mt-3" onclick = "loadEmojis('input-message')" aria-hidden = "true" data-bs-toggle = "modal" data-bs-target = "#emojiModal" data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Add Emoji" >
2022-09-09 23:52:52 +00:00
< i class = "fas fa-smile-beam" > < / i >
2022-05-04 23:09:46 +00:00
< / label >
< label class = "btn btn-secondary m-0 mt-3" for = "file-upload" >
2022-05-22 22:15:29 +00:00
< div id = "filename" > < i class = "fas fa-file" > < / i > < / div >
2022-06-19 16:56:45 +00:00
< input autocomplete = "off" id = "file-upload" accept = "image/*, video/*, audio/*" type = "file" name = "file" multiple = "multiple" { % if request . headers . get ( ' cf-ipcountry ' ) = = " T1 " % } disabled { % endif % } onchange = "changename('filename','file-upload')" hidden >
2022-05-04 23:09:46 +00:00
< / label >
2022-06-24 02:53:31 +00:00
< input type = "submit" onclick = "disable(this)" value = "Submit" class = "btn btn-primary mt-3" >
2022-05-04 23:09:46 +00:00
< / form >
< pre >
< / pre >
2022-07-07 07:31:32 +00:00
< p > 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
< pre >
< / pre >
{% include "emoji_modal.html" %}
{% endblock %}