{% extends "base.html" %} {% block title %}Invite User | Suvra{% endblock %} {% block content %}

Invite User

Create a tenant-scoped user and issue a single-use activation token.

{% if message == "invite_created" %}

Invite created. Activation token: {{ invite_token }}

{% elif error_message %}

Invite failed: {{ error_message }}.

{% endif %}

New Invite

{% if license_summary and license_summary.read_only %}

User creation is disabled while the license is {{ license_summary.license.status }}.

{% elif license_summary and license_summary.usage.active_users_count >= license_summary.max_users %}

User capacity is fully used on the current plan.

{% endif %}

Activation path: /dashboard/activate

{% endblock %}