When logging in with an email, there is no email-confirmation page to show that the email has been confirmed. I've added an email confirmation page in the email-confirmation branch. When I added this page, it led to other errors. Can you please add an email confirmation page to show the user that they have had an email sent to them that they need to confirm?
Please use the code below For the sign-in page.
Tasks:
Add email-confirmation` page
Ensure the email is sent and can be verified.
Resources:
Run npx magicui-cli add confetti
Add
'use client'
import { useCallback } from 'react'
import confetti from 'canvas-confetti'
Overview:
When logging in with an email, there is no email-confirmation page to show that the email has been confirmed. I've added an email confirmation page in the
email-confirmation
branch. When I added this page, it led to other errors. Can you please add an email confirmation page to show the user that they have had an email sent to them that they need to confirm?Please use the code below For the sign-in page.
Tasks:
Resources:
Run
npx magicui-cli add confetti
Add
import { useCallback } from 'react' import confetti from 'canvas-confetti'
export default function EmailConfirmationPage() { const handleMouseEnter = useCallback(() => { const duration = 5 * 1000 const animationEnd = Date.now() + duration const defaults = { startVelocity: 30, spread: 360, ticks: 60, zIndex: 0 }
}, [])
return (
Congratulations!
We appreciate you joining! Let's build the path towards financial freedom together.
Please check your email to find the link to confirm your email.
) }