I have a case where I have two websites for the same Fusionauth application
So I am trying to differentiate the Reset-Password URL based on the role
how can I achieve such a case in the template.
I have tried this
[#if user.roles?? && "client" in user.roles]
<a href="https://test.com/${changePasswordId}">
Reset Password
</a>
[#else]
<a href="https://test.com/${changePasswordId}">
Reset Password
</a>
[/#if]
and it refuses to render.
Any help here !