I’m trying to implement Netlify Identity at https://www.mysite.com/account/ via netlify-identity-widget; however, when the user signs up the verification link looks like this:
https://www.mysite.com/#confirmation_token=<token>
How do I configure it so that the link is this instead?
https://www.mysite.com/account/#confirmation_token=<token>
I found the answer here:
You’ll need to create a custom email template and include the special variables, e.g.:
{{ .SiteURL }}/account/#confirmation_token={{ .Token }}
Note that the ability to customize email templates requires at least a Pro plan.
SamO
3
Glad you found your solution! Thanks for sharing this with the community.