13 lines
897 B
HTML
13 lines
897 B
HTML
{% extends "ui/templates/base/layout.html" %}
|
|
{% block content %}
|
|
<div class="mx-auto max-w-2xl rounded-3xl bg-white p-6 shadow-soft">
|
|
<h2 class="text-xl font-semibold text-slate-900">Consultant Invite Link Generated</h2>
|
|
<p class="mt-1 text-sm text-slate-500">Share this link with {{ consultant.contact_person }} to set password and activate consultant portal login.</p>
|
|
<div class="mt-5 rounded-2xl border border-brand-200 bg-brand-50 p-4 text-sm text-brand-900 break-all">{{ invite_url }}</div>
|
|
<div class="mt-5 flex flex-wrap gap-3">
|
|
<a href="/consultants/{{ consultant.id }}" class="rounded-xl bg-brand-600 px-4 py-2.5 text-sm font-medium text-white hover:bg-brand-700">Open Consultant</a>
|
|
<a href="/consultants" class="rounded-xl border border-slate-300 px-4 py-2.5 text-sm font-medium text-slate-700 hover:bg-slate-50">Back to Consultants</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|