This commit is contained in:
Bryce
2025-10-22 17:34:13 -07:00
commit 2383d1ad9a
15 changed files with 1372 additions and 0 deletions

11
templates/welcome.html Normal file
View File

@@ -0,0 +1,11 @@
{% 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 %}