Hi, I am having a heck of a time trying to find a solution to this problem. I am building an app, in which you have a login page and then after logging in, you have access to the app’s pages/views
I would like to have a template that only shows for the login page. this template will not have menu items or anything else but the login form.
Then I would like all the other pages to have a template that holds a menu and other items (not to mention the page’s content).
My challenge is how do I go about templating this without having to tell all the apps pages to use the same layout.
Ideally, it would be great if I could set a default layout template and every page uses that BUT overwrite that for the login page.
How would you all suggest I handle this. And is there any examples?