im having a confimation email verification on my app, can make me a webpage for this and give the URL
I'll create a confirmation email verification page for your app. This page will handle the verification token from the email link and show appropriate success or error messages.
https://yourdomain.com/verify?token=VERIFICATION_TOKEN
When a user signs up, you should:
/verify?token=VERIFICATION_TOKEN
When implementing with Supabase Auth 1, you can customize the email template to use this URL format. In your Supabase dashboard:
{{ .ConfirmationURL }}
with {{ .SiteURL }}/verify?token={{ .TokenHash }}
const { error } = await supabase.auth.verifyOtp({
token_hash: token,
type: 'email'
});
This verification page provides a clean user experience with loading, success, and error states, along with the ability to resend verification emails if needed.