Files
capsulflask
btcpay
schema_migrations
shell_scripts
static
templates
about-ssh.html
account-balance.html
base.html
btcpay.html
capsul-detail.html
capsuls.html
changelog.html
create-capsul.html
display-metric.html
faq.html
index.html
login-landing.html
login.html
pricing.html
ssh-public-keys.html
stripe.html
support.html
__init__.py
auth.py
cli.py
console.py
db.py
db_model.py
http_client.py
hub_api.py
hub_model.py
landing.py
metrics.py
payment.py
shared.py
spoke_api.py
spoke_model.py
readme
.gitignore
LICENSE.md
Pipfile
Pipfile.lock
README.md
app.py
setup.cfg
setup.py
capsul-flask/capsulflask/templates/support.html

28 lines
880 B
HTML

{% extends 'base.html' %}
{% block title %}Support{% endblock %}
{% block content %}
<div class="row half-margin">
<h1>SUPPORT</h1>
</div>
<div class="row half-margin">
<a href="mailto:support@cyberia.club?subject=Please%20help!">support@cyberia.club</a>
</div>
{% endblock %}
{% block subcontent %}
<p>
Note: We maintain a searchable archive of all support emails at
<a href="https://lists.cyberia.club/~cyberia/support">https://lists.cyberia.club/~cyberia/support</a>
</p>
<p>
If you do not want your mail to appear in a public archive, email <a href="mailto:capsul@cyberia.club?subject=Please%20help!">capsul@cyberia.club</a> instead.
</p>
<p>
Please describe your problem or feature request, and we will do our best to get back to you promptly. Thank you very much.
</p>
{% endblock %}
{% block pagesource %}/templates/support.html{% endblock %}