I am developing an HTML webpage using Firebase, my working tree is:
css
: folder with CSS style filesjs
: folder with Javascript fileslogin.html
: logging in pagesignup.html
: signing up pageapp.html
: main application page
I would like to restrict the app.html
access only for logged users. I have implemented in Javascript some scripts to authenticate users via email and password using the login.html
and signup.html
pages. For the project, I use the hosting tool that offers Firebase. However, I'm not sure whether I need to apply this capability with the hosting tools or the real time database or other. Maybe the solution is to upload my web as a real time database resource and then, control the access to some paths modifying the database.rules.json
file, but I don't know how to implement it.
Thanks for your help :)