feat: implement advanced access control system with user blocking, rate limiting, and enhanced login security; update UI components for improved user experience and documentation

This commit is contained in:
2025-10-29 09:07:37 -03:00
parent d1715f358a
commit 6b14059fde
33 changed files with 6450 additions and 1202 deletions

View File

@@ -67,22 +67,18 @@
{#if getCurrentRouteConfig}
<MenuProtection menuPath={getCurrentRouteConfig.path} requireGravar={getCurrentRouteConfig.requireGravar || false}>
<div class="w-full h-full overflow-y-auto">
<main
id="container-central"
class="w-full max-w-none px-3 lg:px-4 py-4"
>
{@render children()}
</main>
</div>
</MenuProtection>
{:else}
<div class="w-full h-full overflow-y-auto">
<main
id="container-central"
class="w-full max-w-none px-3 lg:px-4 py-4"
>
{@render children()}
</main>
</div>
</MenuProtection>
{:else}
<main
id="container-central"
class="w-full max-w-none px-3 lg:px-4 py-4"
>
{@render children()}
</main>
{/if}