You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -675,7 +675,7 @@ service firebase.storage {
675
675
In this boilerplate users have the option to login via e-mail and password but also they can sign-up/sign-in with their Facebook, Google and Microsoft accounts.
676
676
677
677
<p align="center">
678
-
<img src="https://i.imgur.com/xQz5pSR.png">
678
+
<img src="https://i.imgur.com/AxRBSXT.png">
679
679
</p>
680
680
681
681
### How it works?
@@ -684,7 +684,23 @@ We implemented social media authentication using Firebase!. You can take a look
684
684
685
685
### Can I add more login methods?
686
686
687
-
Yes you can!. We already have the setup in place for more login methods like Twitter, GitHub, etc. You can add them without changing much code at all. You can see other login methods provided by Firebase [here](https://firebase.google.com/docs/auth/web/start).
687
+
Yes you can!. We already have the setup in place for more login methods like Twitter, GitHub, etc. You can add them without changing much code at all.
688
+
689
+
#### Adding more login methods
690
+
691
+
Each login method needs a especific configuration to enable login for users, you can see other login methods provided by Firebase and how to configure them [here](https://firebase.google.com/docs/auth/web/start).
692
+
693
+
Once you configured your new login method and enabled it on your Firebase console, you can add it to the Login page by adding the provider's value on `signInOptions` from `uiConfig` located in the `index.js` file, from the utils folder. You can check your provider value [here](https://github.com/firebase/firebaseui-web/#available-providers).
694
+
695
+
The new value value on `signInOptions` should look like this:
0 commit comments