Firebase passing Authentication between web pages
问题 i don't know how to share the authentication between my web. For example, i want to pass authentication to home page after user logged in in login.html. What is the problem: After user logged in in login.html, the authentication is created. //login.html var user = firebase.auth().currentUser; if (user) { // User is signed in. } However, i need to change location.href to home.html after user logged in. //login.html if (user) { // User is signed in. location.href = "home.html"; } So, what is