Added custom error pages, user password change, initial setup workflow with default admin user.
This commit is contained in:
@@ -442,22 +442,23 @@
|
||||
{% endif %}
|
||||
|
||||
<!-- Game Detail Overlay -->
|
||||
<div id="gameDetailOverlay" class="hidden fixed inset-0 bg-black bg-opacity-75 z-50 flex items-center justify-center p-4 overflow-y-auto backdrop-blur-sm">
|
||||
<div class="bg-secondary rounded-lg max-w-6xl max-h-full w-full overflow-hidden relative shadow-2xl border border-theme animate-fade-in">
|
||||
<!-- Close Button -->
|
||||
<button onclick="closeGameDetail()" class="absolute top-4 right-4 text-primary hover:text-secondary text-2xl z-30 bg-primary bg-opacity-20 hover:bg-opacity-30 rounded-full w-10 h-10 flex items-center justify-center transition-all">
|
||||
×
|
||||
</button>
|
||||
|
||||
<!-- Loading State -->
|
||||
<div id="gameDetailLoading" class="flex items-center justify-center h-96">
|
||||
<div class="text-primary">Loading game details...</div>
|
||||
</div>
|
||||
|
||||
<!-- Game Detail Content -->
|
||||
<div id="gameDetailContent" class="hidden max-h-screen overflow-y-auto">
|
||||
<div id="gameDetailOverlay" class="hidden fixed inset-0 bg-black bg-opacity-75 z-50 overflow-y-auto backdrop-blur-sm">
|
||||
<div class="min-h-screen flex items-start sm:items-center justify-center p-4 py-8 sm:py-4">
|
||||
<div class="bg-secondary rounded-lg max-w-6xl w-full overflow-hidden relative shadow-2xl border border-theme animate-fade-in">
|
||||
<!-- Close Button -->
|
||||
<button onclick="closeGameDetail()" class="absolute top-2 left-2 text-primary hover:text-secondary text-2xl z-30 bg-primary bg-opacity-20 hover:bg-opacity-30 rounded-full w-10 h-10 flex items-center justify-center transition-all">
|
||||
×
|
||||
</button>
|
||||
|
||||
<!-- Loading State -->
|
||||
<div id="gameDetailLoading" class="flex items-center justify-center h-96">
|
||||
<div class="text-primary">Loading game details...</div>
|
||||
</div>
|
||||
|
||||
<!-- Game Detail Content -->
|
||||
<div id="gameDetailContent" class="hidden">
|
||||
<!-- Header -->
|
||||
<div class="border-b border-theme p-6">
|
||||
<div class="border-b border-theme p-6 pl-16">
|
||||
<div class="flex justify-between items-start">
|
||||
<div>
|
||||
<h1 id="gameTitle" class="text-3xl font-bold mb-2 text-primary"></h1>
|
||||
@@ -538,6 +539,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user