Hi, I would like to create a simple system to enter new users into the database. Let me explain in more detail.
I, as an administrator, want to create 10 new users without going through the internal bubble database to be faster. Then I create a simple page with :
email input
name input
age input
button
This button should saves the data and to create a new user, but it is not possible.
Do you know a method to create it?
My goal is to create a USER table in the database with 10 users set by me with email, name, age. Then, at a later time, the user can sign up with the same email entered in the database and continue to fill in the other fields related to their account.
I hope this is clear, waiting for answers, suggestions or tricks
In my case I would like to avoid having a signup form on my website.
As the owner/developer of the bubble app, I would like to be able to create a user directly in the User Database by setting a password.
Isn’t it possible ?
We want to create user account by ourself.
Even if I build an admin page for that, I need to protect it.
To protect it, I need an admin user.
But then, how do you create this admin user if you can’t create it directly in the backend ?
I don’t want at all any signup form on my website.
If you don’t want any public signup, you will need an admin page to make your life easier. If I understand what you’re looking to do, this is my suggestion:
Create a ‘role’ option set (or thing) and create ‘member’, and ‘admin’ roles.
Add that field to your user’s table, you can set a default value if using an option set so all new users will be ‘members’ by default
Create your admin user and give it an admin role. On your simple admin page, hide your main wrapper unless the user is logged in and their role is ‘admin’, redirect to another page if that condition isn’t met.
Then you have a simple admin page and can use the ‘create account for another user’ and do whatever other workflow you need (send email notification, password reset etc)