Login resuelto

This commit is contained in:
2026-02-27 09:16:08 -07:00
parent c146a6c3c3
commit 63925fe305
8 changed files with 109 additions and 11 deletions

View File

@@ -4,13 +4,25 @@
import Toast from '$lib/components/Toast.svelte';
import { onMount } from 'svelte';
import { auth } from '$lib/stores/auth.js';
import { goto } from '$app/navigation';
import { page } from '$app/stores';
import { browser } from '$app/environment';
import '../app.css';
let mounted = false;
onMount(() => {
auth.init();
mounted = true;
});
// Guard reactivo global: redirige a /login si no está autenticado en rutas protegidas
$: if (browser && mounted && !$auth.isAuthenticated &&
!$page.url.pathname.startsWith('/login') &&
!$page.url.pathname.startsWith('/register')) {
goto('/login');
}
$: showHeader = !$page.url.pathname.startsWith('/login') && !$page.url.pathname.startsWith('/register');
</script>