Skip to content Skip to sidebar Skip to footer

Firebase: Email Verification And User Login To Be Able To Access The Page

I have created a form 'main.html#!/register' to allow users to enter their: firstname, lastname, email and login. Once all those entered an email verification is sent, so that they

Solution 1:

You are trying to enforce this on the client side. Instead you should enforce access for verified signed in users from your Firebase rules. For example:

".write": "$user_id === auth.uid && auth.token.email_verified == true"

Post a Comment for "Firebase: Email Verification And User Login To Be Able To Access The Page"