This is a fork of firebaseui
which prevents self account creation when using email/password signin method.
fix was found by @sperochon firebase#99 (comment) :
3b) Open the file javascript/widgets/handler/common.js and replace the content of first 'if' of function 'firebaseui.auth.widget.handler.common.handleSignInStart' with :
if (firebaseui.auth.widget.handler.common.isPasswordProviderOnly(app)) { firebaseui.auth.widget.handler.handle( firebaseui.auth.widget.HandlerName.PASSWORD_SIGN_IN, app, container, opt_email, opt_infoBarMessage); } else ...