Verify Email Link
Deprecation Notice
Vue-based themes will soon be deprecated. Please switch to React-based themes, as all future updates and support will focus exclusively on React.
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>