function MobileAuth({ email, setEmail, password, setPassword, onLogin, onVerifyToken, loading, error, token }) { return (
🚀

Welcome Back

Sign in to your SalesPro account

setEmail(e.target.value)} type="email" className="mobile-form-input" placeholder="Enter your email" required />
setPassword(e.target.value)} type="password" className="mobile-form-input" placeholder="Enter your password" required />
{token && ( )}
{error && (
{error}
)}

Need a branch account? Sign in as Branch

); } // Register globally for the in-browser JSX loader window.MobileAuth = MobileAuth;