{% import "macros/buttons.html" as buttons %} {% import "macros/forms.html" as forms %} {% import "macros/modal.html" as modal %} {% import "macros/icons.html" as icons %} {% extends "admin/tenants/get/email.html" %} {% block head_title_content %}{{ tenant.name }} ยท {{ super() }}{% endblock %} {% set open_modal = true %} {% block modal %} {% call modal.header() %} {% call modal.title() %}Domain authentication for "{{ tenant.email_domain.domain }}"{% endcall %} {% endcall %} {% call modal.body("p-0") %}
Add the following DNS records on your domain's DNS provider. When it's done, click on the Verify button to check if they are correctly set up.
{% for record in tenant.email_domain.records %} {% endfor %}
Type Host Value Verified
{{ record.type | upper }} {{ buttons.clipboard(record.host) }} {{ record.host }} {{ buttons.clipboard(record.value) }} {{ record.value }} {% if record.verified %} {{ icons.check('w-4 h-4 text-green-600') }} {% else %} {{ icons.x_mark('w-4 h-4 text-red-600') }} {% endif %}
{% endcall %} {% call modal.footer() %} {% endcall %} {% endblock %}