I would like to give a user access to my app. The problem is, he doesnt receive mail from the app. How can I give him access anyway?
Anyone?
Bubble is really designed to have your users log in with their email address.
The only thing I have found is if you create your own table similar to the built-in User table.
You’d need to create your own user ID and password in it. When your users register, your app will write new rows to this other User table.
And for your entire app, you’ll need to check this new User table if you need to track user rights, etc.
Of course, if the user forgets their password, they are screwed since you won’t be able to send them an email so they can reset their password. You’d need to build something in your app to verify that they are who they say they are, then give then a page to reset their password. This verification would likely need to ask them enough information to make sure that they are who they say they are. Asking for the full name, or address or something basic like that won’t be enough to securely let them do this,