Hi @jason_lim ,
1- For headers in Power Pages, we have Web Template available in Portal Management App. If you want to customize Header, you can play around with liquid. For second part, you don't have direct control available for login/signup page on your Portal.
2- If you intend to show the main landing page after user has successfully registered and logged in, you can do this by using liquid in Header Web Template. Here is example script where we are redirecting every user to Sign In Page if they are not logged in.
{% if user %}
//Check your default page url after login
if(window.location.href != "" && (window.location.href=="https://myportal.powerappsportals.com/Home")){
window.location.href = "./MyLandingPage";
}
{% else %}
window.location.href = "https://myportal.powerappsportals.com/SignIn";
3- If you want to set Link/Sub-Links in Header there are two ways:
- You can move/update pages from Primary to Secondary Navigation or make Sub-Links by drag and drop using Power Pages Designer Studio.
- You can navigate to Portal Management App -> Web Links and set order/update navigation from there as well.
If you need more clarity or have more questions, feel free to ask.
Thanks,
Saud
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.