I have a dashboard implemented on react-admin. The authentication process was done following this tutorial.
Now I need to implement a forgot password screen, but the problem is that this screen needs to be accessible without being logged in...
I thought of 2 possible ways to implement this:
- Ideally I would like to configure react-admin to allow unauthenticated access to a particular route. Not sure on how to do this, or if it is possible... I found this Github issue mentioning this as an enhancement, but it does not explain how to get around the issue.
- Implement this screen separately in react and handle routing to this page separately. Not sure on how to do this on the framework either...
Can someone explain how to implement either option on the framework?
Thanks in advance,