Is there any way to add users (sign up) for someone with email and password by input fields without sending email with temporary password? i.e. Admin User be able to add user by form.
Sending email with temporary passwork force us to use plugin like sendgrid to provide this feature, I wouldn’t want that.
I’ve never tried it, but try doing the regular “Sign the user up” action via backend workflow. (Password, email, etc. as parameters)
You can do it from the front end, but right after it creates the user it will sign in as that user, so then you would need it to log them out and have the user manually login to their account again.
Wondering if backend workflow would avoid that
Or do some trickery where you make a magic login link for the admin account, sign up the user, then go to the magic login link to get them back in.
Not every app is like Twitter where the user handles their own credentials, Bubble needs to add more stuff like this.
In fact, that possibility is too normal in high code when admin user to be able to add others users in application, even though the password is temporary.
Yea the general idea is “how is the user gonna get the password then?” if someone else is making it for them.
If it’s via some form then the user could actually sign themselves up right there, but some yes/no on their User saying they are pending for verification so no one else knows their password
Then that being yes means they can login and access the app
He will need to click some “Forgot your password?” link in your page. Or you can send him, manually, an email with this link. But as I said, Bubble will not sent any “email with temporary password”.
Not a default one.
But you can use the action “Assign a temp password to a user” to create his password.
You can retrieve the generated password in next steps of the workflow and do whatever you want with this…
This password, as it is temporary, will require the user to reset his password on their first access. Exactly how you want.