Bobby Brooks
Clone 2
ElevenLabs AI
--
min left
Sign out
Tap to start a conversation
Start Conversation
End Conversation
Transcript will appear here...
Bobby Brooks Clone
Sign in to talk to Bobby
Sign In
Create Account
Sign In
Forgot password?
New accounts get 60 free minutes
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.')); }