feat: maintenance mode indicator for whitelisted ips

This commit is contained in:
2026-09-11 08:29:51 +02:00
parent 3cdaee1df3
commit d86eb1fd2e
5 changed files with 64 additions and 0 deletions
@@ -0,0 +1,6 @@
{% if is_maintenance_mode() %}
<div class="sticky top-0 z-50 bg-red-600 text-gray-100 px-4 lg:px-8 py-2 flex items-center justify-center space-x-2">
{{ icon('alert', 'w-5 h-5 flex-shrink-0') }}
<span class="leading-relaxed">Wartungsmodus — das Portal ist für andere Benutzer gesperrt.</span>
</div>
{% endif %}