We can add more robust validators to the app, potentially incorporate it into a stored procedure. For example, we should change this: ```js if (!Email || typeof Email !== 'string') { return res.json({ status: 'error', error: 'Invalid Email id' }) } ```