Email Verification Forms reference API
Example of a fully customized "EmailPassword" configuration for the email verification forms.
SuperTokens.init({
appInfo: {...},
recipeList: [
EmailPassword.init({
palette: {...},
emailVerificationFeature: {
sendVerifyEmailScreen: {
style: {
container: {
backgroundColor: "#ffeeff"
},
(...)
}
},
verifyEmailLinkClickedScreen: {
style: {
container: {
backgroundColor: "#ffeeff"
},
(...)
}
}
},
(...)
})
]
});
sendVerifyEmailScreen
Config values
- style:
- Description: An object to overwrite the verify email form styles. Please refer to the common customizations guide for more information about how to update the enter email form style.
Example:
style: { container: { marginLeft: "10px", (...) }, link: { color: "orange" } (...) }
verifyEmailLinkClickedScreen
Config values
- style:
- Description: An object to overwrite the submit new password form styles. Please refer to the common customizations guide for more information about how to update the sign up form style.
Example:
style: { container: { marginLeft: "10px", (...) }, link: { color: "orange" } (...) }