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

Settings

{# Status banners #} {% if status == "expired" %}
Expired on {{ subscription_expires_at }}. Dashboard read-only for 30 days.
{% endif %} {% if status == "past_due" %}
Payment failed. Update payment method.
{% endif %} {% if cancellation_pending %}
Subscription ends on {{ subscription_expires_at }}. Full access until then.
{% endif %} {# Account section #}

Account

Email
{{ customer_email }}
Tier
{{ tier }}
Status
{{ status }}
Expires
{{ subscription_expires_at }}
{# API Key section #}

API Key

sk_****{{ api_key_last4 }}
{# Downloads section #}

Downloads

{# Billing section #}

Billing

Manage Billing
{# Phase 17: Team, Webhooks, Audit links #} {% if "team_members" in features %}

Team

Manage Members
{% endif %} {% if "webhooks" in features %}

Webhooks

Manage Webhooks
{% endif %} {% if "audit_log" in features %}

Audit Log

View Audit Log
{% endif %}
{% endblock %}