diff --git a/src/routes/login/+server.ts b/src/routes/login/+server.ts index da37db3..3bd99ba 100644 --- a/src/routes/login/+server.ts +++ b/src/routes/login/+server.ts @@ -3,12 +3,27 @@ import type { RequestHandler } from './$types'; export const GET: RequestHandler = async ({ url }) => { const callbackUrl = url.searchParams.get('callbackUrl') || '/'; - // Create a minimal page that immediately triggers auth in the same window + // Create a minimal page with site styling that immediately triggers auth const html = ` Login +
diff --git a/src/routes/logout/+server.ts b/src/routes/logout/+server.ts index 301b302..7ff65da 100644 --- a/src/routes/logout/+server.ts +++ b/src/routes/logout/+server.ts @@ -3,12 +3,27 @@ import type { RequestHandler } from './$types'; export const GET: RequestHandler = async ({ url }) => { const callbackUrl = url.searchParams.get('callbackUrl') || '/'; - // Create a minimal page that immediately triggers logout in the same window + // Create a minimal page with site styling that immediately triggers logout const html = ` Logout +