// SignIn.jsx — resident & owner portal sign-in screen (mock) const { useState: useStateSi } = React; function SignInPage({ navigate }) { const [tab, setTab] = useStateSi('resident'); const [showForgot, setShowForgot] = useStateSi(false); const [form, setForm] = useStateSi({ email: '', password: '' }); return (
Enter the email on your account — we’ll send a secure reset link.