Email/Password
This is the default authentication method configured by default once you create a project.
Last updated
This is the default authentication method configured by default once you create a project.
Last updated
To initiate the configuration of email authentication, begin by accessing your project. Once inside, navigate to the Authentication section in the left menu, and proceed to enable email authentication by selecting the Email/Password button.
To initiate the email authentication setup, you'll be required to provide the following values:
User invite URL
string
Specify a base URL utilized by users on the front end to accept registration invitations sent by your application. This URL will be included in the email generated through the Invite User method in either the JavaScript SDK or REST API.
Example: https://your-app.com/user-invite
Password Reset URL
string
Define a base URL that users on the front end will use to reset their password within your application. This URL will be sent in the email dispatched as a result of the Reset Password method in either the JavaScript SDK or REST API.
Example: https://your-app.com/password-reset
Email Confirmation URL
string
Define a base URL that users on the front end will utilize to verify their email within your application. This URL is included in the email dispatched through the Verify Email method in either the JavaScript SDK or REST API.
Example: https://your-app.com/email-verify
Request e-mail confirmation
boolean
Specify whether email verification is mandatory for activating the account. When set to true
, users will be initially created in a disabled state, and activation will occur only after they verify their email using the Verify Email method in either the JavaScript SDK or REST API.