Closed harshachaitanya closed 3 years ago
Have you tried this to create a login & sign-up page?
https://firebase-wordpress-docs.readthedocs.io/en/latest/auth/register-login-form.html
Yes tried but it's not creating user at WordPress database.
@harshachaitanya can you send me the login page with those implementations?
@dalenguyen sorry for the delay.
<form id="firebase-register-form" data-redirect="/" data-send-email-confirmation="true"><div><label for="firstName">First Name</label><input type="text" name="firstName" required=""></div><div><label for="lastName">Last Name</label><input type="text" name="lastName" required=""></div><div><label for="email">E-mail</label><input type="email" name="email" required=""></div><div><label for="phoneNumber">Phone Number</label><input type="text" name="phoneNumber" required=""></div><div><label for="password">Password</label><input type="password" name="password" required=""></div><div><label for="confirmPassword">Confirm Password</label><input type="password" name="confirmPassword" required=""></div><div><button type="submit" id="firebase-register-form__submit" data-ol-has-click-handler="">Register</button></div></form>
@harshachaitanya do you have a link for it?
@dalenguyen Sorry link means. if possible can you share the sample code with us.
Yes, this is the demo page for register & login
https://wordpress.dalenguyen.me/register-login-form/
If you have implemented it on your site, you can share a link, so I can help to take a look at it.
@dalenguyen
On the website, we are using the custom form for user registration & login as below
we are not using
Consider when a user registers from the web. That user information is storing on the WordPress database side. But not at the firebase side.
Consider when a user registers from the mobile. That user information is storing on the firebase side. But not on the WordPress database side.
Requirements: Irrespective of whether a user registered from Web/Mobile. Users should able to register & login into both Web & Mobile should able to access user information like posts/comments/addresses/orders/user information Can you suggest to us how to resolve this?