How do i create and modify user database without being signed up

I’ll try to make this as simple as possible, what I’m trying to do is:
I want my user to log in with only user name (no email and password: they just enter their username and they’re signed in, their profile page can retrieve data from their username.

Bubble user data type can only be logged in when email and password is available, is there any way i can make this possible?

I’m pretty sure you cannot. I could be wrong but I don’t think so. An idea for a work around would be to create a unique ID for every new user when they click a button or do some action. That is your way of identifying them in the DB. You don’t get access to the convenience of “current user” functionality but it should still work this way. Just have to do a search every time you want to access the user’s info.

Or you could create your users with knowable credentials - eg an arbitrary email user name eg

username@some-constant-string.com

and a password constant.

Then log your users in via an action as you know/infer both the username and password.

1 Like