Currently, my main application is secured behind an authorized login system with all routes protected by a Route Guard. I am now faced with the task of adding a forgot password feature that should exist outside of the login area. There are two specific requirements for this new component.
- The URL for the forgot password page must be http://
- This page should not be subject to the route guard checks.
What would be the most effective strategy for integrating this into the existing setup?