I'm working on an web app currently with no-code stack:
Airtable - Database (Currently holds every record excluding user credentials)
Softr - Front End & User Credentials DB (Holds Name, Email and pass for users to login)
Make.com - Automates User Creation
The user will be added in the Airtable manually such as (Email, Name, etc) and an automation link button is added in every record. So, when it is clicked, the following user will be added for Login into Softr and an email is sent to that user for creating a password.
Since, there are limitations in this stack. We're migrating to coding stack.
- NextJS(React) - Front end
- Airtable - DB (Decided not to migrate)
- Firebase - For User Authentication only
- Make.com - For Automation of creating a new User
I have rough idea on creating a new user (On Firebase) and displaying that user details from Airtable.
But my question is, how do I automate a new user creation from Airtable which will trigger the Firebase to create a new user authentication and send an email to user the sign in link.
TIA.