Verify Email Link
The Verify Email Link allows the user to instruct about verifying the Email in case of Email id is required and set to Soft in platform configuration.
Arguments
Context | Type | Description |
---|---|---|
String | User Email |
Example:
The below example will render a Verify Email Link.
theme/templates/pages/verify-email-link.vue
<div className="verify-email-link-wrapper">
<div className="verify-email-link-verify-txt">
A verification link has been sent to {{ email }}
</div>
<p className="verify-email-link-verify-desc">
Please click on the link that has been sent to your email
account to verify your email and continue with the
registration process.
</p>
<button
className="verify-email-link-btn secondary-btn"
type="submit"
@click="continueBtnClick(accountData)"
>
Continue
</button>
</div>