Verify Email
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 allows user to verify the email. when the user clicks on verify email a verification link is sent to the respective Email.
When the user clicks the verification link the email id is verified.
Example:
The below example will render a Verify Email.
theme/templates/pages/verify-email.vue
<div className="verify-email-wrapper">
<div v-if="validEmailCode">Email Successfully Verified</div>
<div v-if="inValidEmailCode">Code Expired/Invalid Request</div>
</div>