Begin Your Journey ✨

Join Chosen Clarity to unlock AI-powered spiritual guidance

Easy Sign Up! Accept the privacy policy below, then choose your preferred sign-in method (Google, GitHub, or Email).

You'll choose Google, GitHub, or Email on the next screen

Already have an account? Sign in instead

// Check if user is already authenticated via Cloudflare Access async function checkAuth() { try { const response = await fetch('/dashboard/', { method: 'HEAD', redirect: 'manual' }); // If we can access dashboard, user is already logged in if (response.type !== 'opaqueredirect') { window.location.href = '/dashboard/'; } } catch (error) { console.log('Not authenticated'); } } // Check auth on page load checkAuth();