Bobby Brooks

Clone 2

ElevenLabs AI
Tap to start a conversation
Transcript will appear here...

Bobby Brooks Clone

Sign in to talk to Bobby

Sign In
Create Account
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.')); }