rocket_auth
rocket_auth copied to clipboard
Add constructor for Signup
It is quite inconvenient to get a Signup form if one requires an username parameter in addition to password and email.
I am not 100% sure if i understand your problem, but you can signup/create a user via the Auth RequestGuard:
auth.users.create_user(email, password, false).await?;