Add entry screen with placeholder pages for unauthenticated users#448
Merged
StuartFerguson merged 5 commits intomainfrom Jan 4, 2026
Merged
Add entry screen with placeholder pages for unauthenticated users#448StuartFerguson merged 5 commits intomainfrom
StuartFerguson merged 5 commits intomainfrom
Conversation
Co-authored-by: StuartFerguson <[email protected]>
Co-authored-by: StuartFerguson <[email protected]>
Copilot
AI
changed the title
[WIP] Add entry screen for unauthenticated users
Add entry screen for unauthenticated users with OIDC sign-in
Jan 3, 2026
Member
|
@copilot on the buttons View Estate, View Merchants and View Files can you change the text on all to say "View More" and add a placeholder page for each that is also unauthenticated please |
… pages Co-authored-by: StuartFerguson <[email protected]>
Contributor
Author
Done in commit ce2ea66. All three buttons now say "View More" and link to unauthenticated placeholder pages (/estate-info, /merchant-info, /file-info). Each placeholder page includes detailed feature descriptions, Sign In button, and Back button. |
Copilot
AI
changed the title
Add entry screen for unauthenticated users with OIDC sign-in
Add entry screen with placeholder pages for unauthenticated users
Jan 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Implements an entry screen shown to unauthenticated users before login, featuring three service sections (Estate Management, Merchant Management, File Processing) with a sign-in flow that integrates with the existing OIDC authentication. Each section includes a "View More" button that navigates to dedicated placeholder pages providing detailed information about each feature area.
Changes
EntryScreen.razor- New landing page at/entrywith three feature cards. Each card has a "View More" button linking to its respective info pageEstateInfo.razor- Unauthenticated placeholder page at/estate-infowith detailed Estate Management featuresMerchantInfo.razor- Unauthenticated placeholder page at/merchant-infowith detailed Merchant Management featuresFileInfo.razor- Unauthenticated placeholder page at/file-infowith detailed File Processing featuresEntryLayout.razor- Minimal layout for unauthenticated views without sidebar/navigation chromeHome.razor- Added auth state check that redirects unauthenticated users to entry screen on mountProgram.cs- Added/loginendpoint that triggers OIDC challenge and redirects to dashboard post-authFlow
Screenshots
Entry Screen:
Example Placeholder Page (Estate Management):
Merchant Management Placeholder:
File Processing Placeholder:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.