Using a web page, after sign up on Firebase, with Facebook
I have a small web site where users can sign in on Firebase, using email and password. I uses this code: <script> function SignUpWithMailPSW(email,pswRdmSeq) { .... firebase.auth().createUserWithEmailAndPassword(email, pswRdmSeq).then(function(user) { .... } ... useful things irrelevant to the question. } </script>…