{% extends "base.html" %} {% block title %}Domains — Settings{% endblock %} {% block content %}

Domains

Branding Plan & Usage Domains
{% if not domain_allowed %}
Custom domains are available on Pro and Enterprise plans. View your plan.
{% endif %}
{% for d in tenant_domains %} {# DNS verification instructions for unverified custom domains #} {% if not d.verified and d.kind == 'custom' and d.verification_token %} {% endif %} {% else %} {% endfor %}
Domain Type Status TLS
{{ d.domain }} {{ d.kind }} {% if d.is_primary %} primary {% endif %} {% if d.verified %} Verified {% else %} Pending DNS {% endif %} {{ d.tls_status }} {% if not d.is_primary and d.kind == 'custom' %}
{% endif %}
DNS Verification required for {{ d.domain }}
Add one of these DNS records at your DNS provider, then contact support to activate:
Option A — TXT record
Name: _jqc-verify.{{ d.domain }}
Value: jqc-verify={{ d.verification_token }}

Option B — CNAME record
Name: {{ d.domain }}
Value: {{ tenant_slug }}.{{ base_domain }}
No domains configured.
{% if domain_allowed %}
Request Custom Domain

Enter the custom domain you want to use (e.g. jqc.yourcompany.com). You'll need to add a DNS record to verify ownership before it goes live.

{% endif %} {% endblock %}