Initial
This commit is contained in:
11
templates/welcome.html
Normal file
11
templates/welcome.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user