You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Registration requires that the username, email, and password fields are all present. The authentication server also performs validation against username and email uniqueness, with the option to configure password validation rules. If these fields fail validation the authentication server returns errors.
We need to relay these to the end user so they can fix the issue on the registration form.
The text was updated successfully, but these errors were encountered:
Currently if you try to register a new user using a user name or email that already exists, the error will show up in the console on the back end with the specific issue. It will say for instance, "A User with email = [existing email] already exists." On the front end, you will only see a generic "something went wrong" message.
Registration requires that the
username
,email
, andpassword
fields are all present. The authentication server also performs validation againstusername
andemail
uniqueness, with the option to configure password validation rules. If these fields fail validation the authentication server returns errors.We need to relay these to the end user so they can fix the issue on the registration form.
The text was updated successfully, but these errors were encountered: