I'm building a React app where you have to login in order to access certain pages. There are a few restrictions:
- it should be 'login with google' button
- only custom emails should be accepted (myname@custom.com) All custom emails are G suit emails.
So far I'm thinking about Firebase, but not sure how to validate email in this case.
Is Firebase the right tool for this use case? If so how to validate emails in this case?
Or there is a better approach?
Thanks in advance!