2020-08-29 19:05:32 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% call text() %}
|
2021-01-11 10:22:39 +01:00
|
|
|
<h1>
|
|
|
|
<b>{{ custom_domain.domain }}</b> does not have the DNS set up correctly
|
|
|
|
</h1>
|
2020-08-29 19:05:32 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Please make sure to set up your domain following the instructions on your domain DNS page at
|
|
|
|
<a href="{{ domain_dns_url }}">{{ custom_domain.domain }} DNS</a>.
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% call text() %}
|
|
|
|
Feel free reply to this email if you have any question. <br>
|
|
|
|
Best, <br>
|
|
|
|
SimpleLogin team.
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|