There are two key elements that I need to address in my ng2 project
I am looking to create distinct HTML structures for the login page and home page. Currently, my router-outlet in the app module is enclosed in a template HTML structure. However, I want this base template to be different for the login and home pages.
I aim to have the same URLs for both jobseeker and employer users. The jobseeker and employer pages are located in separate modules, making it necessary to establish a routing module based on user sessions. However, I am unsure of how to go about implementing this.