{% extends 'default.html' %} {% set active_page = "custom_domain" %} {% block title %} Custom Domains {% endblock %} {% block head %} {% endblock %} {% block default_content %}

Custom Domains

{% if not current_user.is_premium() %} {% endif %} {% for custom_domain in custom_domains %}
{{ custom_domain.domain }} {% if custom_domain.verified %} {% else %} 🚫 {% endif %}
Created {{ custom_domain.created_at | dt }}
{{ custom_domain.nb_alias() }} aliases.
Details ➡
{% endfor %}
{{ new_custom_domain_form.csrf_token }} Please use full path domain, for ex my-subdomain.my-domain.com {{ new_custom_domain_form.domain(class="form-control", placeholder="my-domain.com") }} {{ render_field_errors(new_custom_domain_form.domain) }}
{% endblock %} {% block script %} {% endblock %}