If you have built a Power Pages site and noticed that the Sign In button is missing from the header, you are not alone. This is one of the most common issues people run into, especially when setting up a Power Pages site for the first time.
The confusing part is that the site looks completely fine. The pages load, the content shows up, but there is no Sign In option anywhere. Users cannot log in, and you do not know why.
In this tutorial, I will show you exactly why this happens and walk you through all the fixes step by step. By the end, your Sign In button will be back and working correctly.
Why is the Sign In Option Missing in Power Pages?
There are three main reasons this happens:
- The Profile/Enabled site setting is set to false
- No Identity Provider is configured for the site
- The Header web template has been edited, and the sign-in code is missing or commented out

Fix 1 — Check the Profile/Enabled Site Setting in Power Pages
This is the most common cause. When the Profile/Enabled setting is set to false, Power Pages automatically hides the Sign In and Profile buttons from the header.
Here is how to fix it:
- Go to make.powerpages.microsoft.com
- Click 3 dots(…) on your site.
- Click Power Page Management — this opens the Portal Management app

- In the left navigation, click Site Settings
- In the search box, type Profile/Enabled
- Click on the setting to open it
- If the Value field shows false, change it to true
- Click Save

Go back to Power Pages Studio and click Sync. After syncing, open your portal, and the Sign In button should now appear in the header.

Fix 2 — Configure an Identity Provider in Power Pages
If no identity provider is set up on your site, Power Pages has nothing to authenticate users against — so it simply hides the Sign In option. You need at least one identity provider configured before the button will show.
Here is how to set it up:
- Open your site in Power Pages Studio
- On the left panel, click Security
- Click Identity providers
- You will see a list of available providers

You can check how to do it for Microsoft, and Google has set up an Identity Provider.
Fix 3 — Check the Header Web Template in Power Pages
If the first two fixes did not work, the issue is likely inside the Header web template. Someone may have edited it and accidentally removed or commented out the Sign In code.
Here is how to check and fix it:
- Go to Power Page Management app
- In the left navigation, click Web Templates
- Search for Header and open it
- Look for this section in the source code:
{% assign profile_enabled = settings['Profile/Enabled'] | boolean | default: true %}
{% if profile_enabled %}
<a href="{{ sitemarkers['Login'].url }}">Sign In</a>
{% endif %}

- If this block is wrapped inside comment tags like {# … #}, remove the comment tags so the code is active again
- If this block is missing completely, add it back in the correct position inside the header layout
- Click Save
- Go back to Power Pages Studio and click Sync
Conclusion
In this tutorial, we learned why the Sign In button is missing in Power Pages and how to fix it.
The issue usually happens because the Profile/Enabled site setting is turned off, no identity provider is configured, or the Header web template has been changed. By checking these three areas, you can easily bring back the Sign In option on your Power Pages site.
I hope this tutorial helped you understand how to fix the missing Sign In button in Power Pages. Now, users should be able to sign in to your site without any issues.
Also, you may like some more tutorials:
- Add a List in Power Pages
- Create A Form In Power Pages
- Add a Card Gallery in Power Pages
- Add a Multistep Form in Power Pages

Hey! I’m Bijay Kumar, founder of SPGuides.com and a Microsoft Business Applications MVP (Power Automate, Power Apps). I launched this site in 2020 because I truly enjoy working with SharePoint, Power Platform, and SharePoint Framework (SPFx), and wanted to share that passion through step-by-step tutorials, guides, and training videos. My mission is to help you learn these technologies so you can utilize SharePoint, enhance productivity, and potentially build business solutions along the way.