https://github.com/danielmackay/b2c-webapp-demo
Demo using Azure AD B2C to secure a Razor Pages Web App.
https://github.com/danielmackay/b2c-webapp-demo
Last synced: 4 months ago
JSON representation
Demo using Azure AD B2C to secure a Razor Pages Web App.
- Host: GitHub
- URL: https://github.com/danielmackay/b2c-webapp-demo
- Owner: danielmackay
- Created: 2021-06-16T07:02:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T12:20:24.000Z (almost 5 years ago)
- Last Synced: 2025-06-11T00:06:32.291Z (12 months ago)
- Language: HTML
- Size: 797 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# b2c-webapp-demo
Demo using Azure AD B2C to secure a Razor Pages Web App.
## Overview
Azure AD B2C can be thought of as "Identity for the Internet" as opposed to "Identity for Organisations". It can be a great replacement where previously you might have had a local user database you managed directly. Besides off loading the risk of leaking user passwords, Azure AD B2C can speed up implementing Identity for your application, and enable additional functionality like social logins, that would have previously been more difficult.
## Tech Stack
- Azure AD B2C
- ASP.NET Core Razor Pages
- .NET 5
The project was scaffolded using the following commands:
```
mkdir b2c-webapp-demo
cd .\b2c-webapp-demo\
dotnet new webapp --auth IndividualB2C
```
## User Flows
This solution uses Azure AD B2C to 3 user flows. These flows are provided OOTB by identiy including the UI.
### Sign Up and Sign In

### Edit Profile

### Reset Password

## Resources
- [Youtube](https://www.youtube.com/watch?v=oG9GcYIuYQM)