11 lines
495 B
HTML
11 lines
495 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<div class="bg-white shadow rounded-2xl p-6">
|
|
<h1 class="text-xl font-semibold mb-2">Welcome!</h1>
|
|
<p class="text-slate-700">Your account is almost ready. An administrator will finish setup soon.</p>
|
|
<ul class="mt-4 list-disc pl-6 text-sm text-slate-700">
|
|
<li><strong>enabled</strong>: {{ 'true' if profile.enabled else 'false' }}</li>
|
|
<li><strong>caseEmail</strong>: {{ profile.caseEmail or '—' }}</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %} |