mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
37 lines
771 B
HTML
37 lines
771 B
HTML
{% extends 'default.html' %}
|
|
|
|
{% set active_page = None %}
|
|
|
|
{% block title %}
|
|
Support
|
|
{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>
|
|
.card-title {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
margin-bottom: 3px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
|
|
|
<div class="col pb-3">
|
|
<!-- Current plan -->
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="card-title mb-3">Support ticket has been created for {{ ticketEmail }}</div>
|
|
<div class="mt-2">
|
|
You should have received an email notification. We'll get in contact with you shortly.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|