Good morning (or other depending)! I am trying to ...
# support-questions-legacy
r
Good morning (or other depending)! I am trying to implement a model of displaying the super tokens login page on all my protected routes without changing the url. After login the route and contents would be displayed (preventing url deeplinks from being lost because of being logged out). I am familiar with this model from other services, where you don’t especially need a login page because every page is its own login page. Can I do this without having to exit from the supertokens login page react ui wrapper system? Most of the docs seem to document a “user is logged out? Fire a redirect” system.
r
hey! this is possible
So you want to checkout the embed login page section of the docs
which recipe are you using?
r
EmailandPassword
r
OK, I was looking at that page does having a forgot password url still work and things like that?
r
the forgot password URL will point to another page that has nothing to do with the actual sign in / up form.
and that will continue to work. The above link is only for the sign in / up components to be displayed wherever you like
note that before rendering this component, you might wanna check if a session already exists, and render it only if a session does not already exist.
r
Okay, I can work with that.