The Wonder Way
.org
--
min left ·
Sign out
Tap to connect
The Wonder Way
Sign in to access your Foundation teaching session
Sign In
Create Account
Sign In
Forgot password?
function showForgot() { const email = prompt('Enter your email address:'); if (!email) return; fetch('/api/auth/forgot-password', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ email }) }).then(r => r.json()).then(d => alert(d.message || 'If that email is registered you will receive a reset link.')).catch(() => alert('Connection error.')); }