{% extends "base.html" %} {% block title %}Invite Link Issue{% endblock %} {% block content %}

We couldn’t process this link

{% if issue == 'invalid' %}

This link is invalid or no longer exists.

{% elif issue == 'expired' %}

This invite has expired or is no longer available.

{% elif issue == 'wrong_account' %}

The invite is not associated with your account.

{% if invited_email %}

This invite was sent to {{ invited_email }}.

{% endif %} {% endif %}
Sign in {% if context_type == 'organization_invite' %}

Ask the inviter to send a new invite{% if invited_by %} ({{ invited_by.email }}){% endif %}.

{% elif context_type == 'agent_allowlist' and issue != 'wrong_account' %}

Ask the agent owner to send a new invite.

{% endif %}
{% endblock %}