├── .gitignore ├── 1-rest-calls ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj ├── forms │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── TheReviewer.Droid.csproj │ │ └── packages.config │ ├── TheReviewer.Core │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Models │ │ │ └── Review.cs │ │ ├── Pages │ │ │ ├── ReviewListPage.xaml │ │ │ └── ReviewListPage.xaml.cs │ │ ├── TheReviewer.Core.csproj │ │ └── ViewModels │ │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── TheReviewer.iOS.csproj │ │ └── packages.config └── readme.md ├── 10-pass-profile-change ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj ├── custom-pages │ ├── css │ │ └── global.css │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Regular.ttf │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── activedirectory.png │ │ ├── background-1.png │ │ ├── background.jpg │ │ ├── facebook.png │ │ ├── googleplus.png │ │ ├── logo-1.png │ │ ├── logo.png │ │ ├── microsoft.png │ │ ├── wingtipcorp.png │ │ └── wingtiptoys.png │ ├── phonefactor.html │ ├── resetpassword.html │ ├── selfasserted.html │ ├── unified.html │ └── updateprofile.html ├── forms │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── TheReviewer.Droid.csproj │ │ └── packages.config │ ├── TheReviewer.Core │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Helpers │ │ │ └── Constants.cs │ │ ├── Models │ │ │ └── Review.cs │ │ ├── Pages │ │ │ ├── ReviewListPage.xaml │ │ │ └── ReviewListPage.xaml.cs │ │ ├── Services │ │ │ ├── IIdentityService.cs │ │ │ └── IdentityService.cs │ │ ├── TheReviewer.Core.csproj │ │ └── ViewModels │ │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── TheReviewer.iOS.csproj │ │ └── packages.config └── functions │ ├── AllReviews │ ├── function.json │ ├── review.csx │ └── run.csx │ └── host.json ├── 2-add-ad-b2c ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj └── forms │ ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── TheReviewer.Droid.csproj │ └── packages.config │ ├── TheReviewer.Core │ ├── App.xaml │ ├── App.xaml.cs │ ├── Models │ │ └── Review.cs │ ├── Pages │ │ ├── ReviewListPage.xaml │ │ └── ReviewListPage.xaml.cs │ ├── TheReviewer.Core.csproj │ └── ViewModels │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── TheReviewer.iOS.csproj │ └── packages.config ├── 3-social └── readme.md ├── 4-login-service ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj └── forms │ ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── TheReviewer.Droid.csproj │ └── packages.config │ ├── TheReviewer.Core │ ├── App.xaml │ ├── App.xaml.cs │ ├── Helpers │ │ └── Constants.cs │ ├── Models │ │ └── Review.cs │ ├── Pages │ │ ├── ReviewListPage.xaml │ │ └── ReviewListPage.xaml.cs │ ├── Services │ │ ├── IIdentityService.cs │ │ └── IdentityService.cs │ ├── TheReviewer.Core.csproj │ └── ViewModels │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── TheReviewer.iOS.csproj │ └── packages.config ├── 8-branding ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj ├── custom-pages │ ├── css │ │ └── global.css │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Regular.ttf │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── activedirectory.png │ │ ├── background-1.png │ │ ├── background.jpg │ │ ├── facebook.png │ │ ├── googleplus.png │ │ ├── logo-1.png │ │ ├── logo.png │ │ ├── microsoft.png │ │ ├── wingtipcorp.png │ │ └── wingtiptoys.png │ ├── phonefactor.html │ ├── resetpassword.html │ ├── selfasserted.html │ ├── unified.html │ └── updateprofile.html └── forms │ ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── TheReviewer.Droid.csproj │ └── packages.config │ ├── TheReviewer.Core │ ├── App.xaml │ ├── App.xaml.cs │ ├── Helpers │ │ └── Constants.cs │ ├── Models │ │ └── Review.cs │ ├── Pages │ │ ├── ReviewListPage.xaml │ │ └── ReviewListPage.xaml.cs │ ├── Services │ │ ├── IIdentityService.cs │ │ └── IdentityService.cs │ ├── TheReviewer.Core.csproj │ └── ViewModels │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── TheReviewer.iOS.csproj │ └── packages.config ├── 9-functions ├── backend │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── ReviewsController.cs │ ├── Models │ │ └── Review.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── backend.csproj ├── custom-pages │ ├── css │ │ └── global.css │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Regular.ttf │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── activedirectory.png │ │ ├── background-1.png │ │ ├── background.jpg │ │ ├── facebook.png │ │ ├── googleplus.png │ │ ├── logo-1.png │ │ ├── logo.png │ │ ├── microsoft.png │ │ ├── wingtipcorp.png │ │ └── wingtiptoys.png │ ├── phonefactor.html │ ├── resetpassword.html │ ├── selfasserted.html │ ├── unified.html │ └── updateprofile.html ├── forms │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── TheReviewer.Droid.csproj │ │ └── packages.config │ ├── TheReviewer.Core │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Helpers │ │ │ └── Constants.cs │ │ ├── Models │ │ │ └── Review.cs │ │ ├── Pages │ │ │ ├── ReviewListPage.xaml │ │ │ └── ReviewListPage.xaml.cs │ │ ├── Services │ │ │ ├── IIdentityService.cs │ │ │ └── IdentityService.cs │ │ ├── TheReviewer.Core.csproj │ │ └── ViewModels │ │ │ └── ReviewListViewModel.cs │ ├── TheReviewer.sln │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── TheReviewer.iOS.csproj │ │ └── packages.config └── functions │ ├── AllReviews │ ├── function.json │ ├── review.csx │ └── run.csx │ └── host.json ├── LICENSE └── blog-posts ├── part-1-intro.md ├── part-10-pass-profile-change.md ├── part-2-creating-a-tenant.md ├── part-3-invoking-web-api.md ├── part-4-b2c-app-parts.md ├── part-5-adding-auth.md ├── part-6-social-auth.md ├── part-7-multi-factor.md ├── part-8-point-5-customization.md ├── part-8-ui-customization.md └── part-9-functions-auth.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/.gitignore -------------------------------------------------------------------------------- /1-rest-calls/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/.vscode/launch.json -------------------------------------------------------------------------------- /1-rest-calls/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /1-rest-calls/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /1-rest-calls/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/Models/Review.cs -------------------------------------------------------------------------------- /1-rest-calls/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/Program.cs -------------------------------------------------------------------------------- /1-rest-calls/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/Startup.cs -------------------------------------------------------------------------------- /1-rest-calls/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/appsettings.Development.json -------------------------------------------------------------------------------- /1-rest-calls/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/appsettings.json -------------------------------------------------------------------------------- /1-rest-calls/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/backend/backend.csproj -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /1-rest-calls/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/Droid/packages.config -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/TheReviewer.sln -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/Info.plist -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/Main.cs -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /1-rest-calls/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/forms/iOS/packages.config -------------------------------------------------------------------------------- /1-rest-calls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/1-rest-calls/readme.md -------------------------------------------------------------------------------- /10-pass-profile-change/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/.vscode/launch.json -------------------------------------------------------------------------------- /10-pass-profile-change/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /10-pass-profile-change/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /10-pass-profile-change/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/Models/Review.cs -------------------------------------------------------------------------------- /10-pass-profile-change/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/Program.cs -------------------------------------------------------------------------------- /10-pass-profile-change/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/Startup.cs -------------------------------------------------------------------------------- /10-pass-profile-change/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/appsettings.Development.json -------------------------------------------------------------------------------- /10-pass-profile-change/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/appsettings.json -------------------------------------------------------------------------------- /10-pass-profile-change/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/backend/backend.csproj -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/css/global.css -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/activedirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/activedirectory.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/background-1.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/background.jpg -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/facebook.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/googleplus.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/logo-1.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/logo.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/microsoft.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/wingtipcorp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/wingtipcorp.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/images/wingtiptoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/images/wingtiptoys.png -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/phonefactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/phonefactor.html -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/resetpassword.html -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/selfasserted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/selfasserted.html -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/unified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/unified.html -------------------------------------------------------------------------------- /10-pass-profile-change/custom-pages/updateprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/custom-pages/updateprofile.html -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /10-pass-profile-change/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/Droid/packages.config -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Helpers/Constants.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Services/IIdentityService.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/Services/IdentityService.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/TheReviewer.sln -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/Info.plist -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/Main.cs -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /10-pass-profile-change/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/forms/iOS/packages.config -------------------------------------------------------------------------------- /10-pass-profile-change/functions/AllReviews/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/functions/AllReviews/function.json -------------------------------------------------------------------------------- /10-pass-profile-change/functions/AllReviews/review.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/functions/AllReviews/review.csx -------------------------------------------------------------------------------- /10-pass-profile-change/functions/AllReviews/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/10-pass-profile-change/functions/AllReviews/run.csx -------------------------------------------------------------------------------- /10-pass-profile-change/functions/host.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/.vscode/launch.json -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/Models/Review.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/Program.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/Startup.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/appsettings.Development.json -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/appsettings.json -------------------------------------------------------------------------------- /2-add-ad-b2c/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/backend/backend.csproj -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/Droid/packages.config -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/TheReviewer.sln -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/Info.plist -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/Main.cs -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /2-add-ad-b2c/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/2-add-ad-b2c/forms/iOS/packages.config -------------------------------------------------------------------------------- /3-social/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/3-social/readme.md -------------------------------------------------------------------------------- /4-login-service/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/.vscode/launch.json -------------------------------------------------------------------------------- /4-login-service/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /4-login-service/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /4-login-service/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/Models/Review.cs -------------------------------------------------------------------------------- /4-login-service/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/Program.cs -------------------------------------------------------------------------------- /4-login-service/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/Startup.cs -------------------------------------------------------------------------------- /4-login-service/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/appsettings.Development.json -------------------------------------------------------------------------------- /4-login-service/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/appsettings.json -------------------------------------------------------------------------------- /4-login-service/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/backend/backend.csproj -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /4-login-service/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /4-login-service/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /4-login-service/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /4-login-service/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/Droid/packages.config -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Helpers/Constants.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Services/IIdentityService.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/Services/IdentityService.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /4-login-service/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/TheReviewer.sln -------------------------------------------------------------------------------- /4-login-service/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /4-login-service/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /4-login-service/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /4-login-service/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /4-login-service/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/Info.plist -------------------------------------------------------------------------------- /4-login-service/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /4-login-service/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/Main.cs -------------------------------------------------------------------------------- /4-login-service/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /4-login-service/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/4-login-service/forms/iOS/packages.config -------------------------------------------------------------------------------- /8-branding/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/.vscode/launch.json -------------------------------------------------------------------------------- /8-branding/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /8-branding/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /8-branding/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/Models/Review.cs -------------------------------------------------------------------------------- /8-branding/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/Program.cs -------------------------------------------------------------------------------- /8-branding/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/Startup.cs -------------------------------------------------------------------------------- /8-branding/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/appsettings.Development.json -------------------------------------------------------------------------------- /8-branding/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/appsettings.json -------------------------------------------------------------------------------- /8-branding/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/backend/backend.csproj -------------------------------------------------------------------------------- /8-branding/custom-pages/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/css/global.css -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /8-branding/custom-pages/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /8-branding/custom-pages/images/activedirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/activedirectory.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/background-1.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/background.jpg -------------------------------------------------------------------------------- /8-branding/custom-pages/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/facebook.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/googleplus.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/logo-1.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/logo.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/microsoft.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/wingtipcorp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/wingtipcorp.png -------------------------------------------------------------------------------- /8-branding/custom-pages/images/wingtiptoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/images/wingtiptoys.png -------------------------------------------------------------------------------- /8-branding/custom-pages/phonefactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/phonefactor.html -------------------------------------------------------------------------------- /8-branding/custom-pages/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/resetpassword.html -------------------------------------------------------------------------------- /8-branding/custom-pages/selfasserted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/selfasserted.html -------------------------------------------------------------------------------- /8-branding/custom-pages/unified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/unified.html -------------------------------------------------------------------------------- /8-branding/custom-pages/updateprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/custom-pages/updateprofile.html -------------------------------------------------------------------------------- /8-branding/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /8-branding/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /8-branding/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /8-branding/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /8-branding/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /8-branding/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /8-branding/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/Droid/packages.config -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Helpers/Constants.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Services/IIdentityService.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/Services/IdentityService.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /8-branding/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/TheReviewer.sln -------------------------------------------------------------------------------- /8-branding/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /8-branding/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /8-branding/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /8-branding/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /8-branding/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/Info.plist -------------------------------------------------------------------------------- /8-branding/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /8-branding/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/Main.cs -------------------------------------------------------------------------------- /8-branding/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /8-branding/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/8-branding/forms/iOS/packages.config -------------------------------------------------------------------------------- /9-functions/backend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/.vscode/launch.json -------------------------------------------------------------------------------- /9-functions/backend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/.vscode/tasks.json -------------------------------------------------------------------------------- /9-functions/backend/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /9-functions/backend/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/Models/Review.cs -------------------------------------------------------------------------------- /9-functions/backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/Program.cs -------------------------------------------------------------------------------- /9-functions/backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/Startup.cs -------------------------------------------------------------------------------- /9-functions/backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/appsettings.Development.json -------------------------------------------------------------------------------- /9-functions/backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/appsettings.json -------------------------------------------------------------------------------- /9-functions/backend/backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/backend/backend.csproj -------------------------------------------------------------------------------- /9-functions/custom-pages/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/css/global.css -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /9-functions/custom-pages/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /9-functions/custom-pages/images/activedirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/activedirectory.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/background-1.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/background.jpg -------------------------------------------------------------------------------- /9-functions/custom-pages/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/facebook.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/googleplus.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/logo-1.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/logo.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/microsoft.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/wingtipcorp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/wingtipcorp.png -------------------------------------------------------------------------------- /9-functions/custom-pages/images/wingtiptoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/images/wingtiptoys.png -------------------------------------------------------------------------------- /9-functions/custom-pages/phonefactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/phonefactor.html -------------------------------------------------------------------------------- /9-functions/custom-pages/resetpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/resetpassword.html -------------------------------------------------------------------------------- /9-functions/custom-pages/selfasserted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/selfasserted.html -------------------------------------------------------------------------------- /9-functions/custom-pages/unified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/unified.html -------------------------------------------------------------------------------- /9-functions/custom-pages/updateprofile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/custom-pages/updateprofile.html -------------------------------------------------------------------------------- /9-functions/forms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /9-functions/forms/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/MainActivity.cs -------------------------------------------------------------------------------- /9-functions/forms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /9-functions/forms/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /9-functions/forms/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /9-functions/forms/Droid/TheReviewer.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/TheReviewer.Droid.csproj -------------------------------------------------------------------------------- /9-functions/forms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/Droid/packages.config -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/App.xaml -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/App.xaml.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Helpers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Helpers/Constants.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Models/Review.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Pages/ReviewListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Pages/ReviewListPage.xaml -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Pages/ReviewListPage.xaml.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Services/IIdentityService.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/Services/IdentityService.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/TheReviewer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/TheReviewer.Core.csproj -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.Core/ViewModels/ReviewListViewModel.cs -------------------------------------------------------------------------------- /9-functions/forms/TheReviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/TheReviewer.sln -------------------------------------------------------------------------------- /9-functions/forms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /9-functions/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /9-functions/forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /9-functions/forms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /9-functions/forms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/Info.plist -------------------------------------------------------------------------------- /9-functions/forms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /9-functions/forms/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/Main.cs -------------------------------------------------------------------------------- /9-functions/forms/iOS/TheReviewer.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/TheReviewer.iOS.csproj -------------------------------------------------------------------------------- /9-functions/forms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/forms/iOS/packages.config -------------------------------------------------------------------------------- /9-functions/functions/AllReviews/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/functions/AllReviews/function.json -------------------------------------------------------------------------------- /9-functions/functions/AllReviews/review.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/functions/AllReviews/review.csx -------------------------------------------------------------------------------- /9-functions/functions/AllReviews/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/9-functions/functions/AllReviews/run.csx -------------------------------------------------------------------------------- /9-functions/functions/host.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/LICENSE -------------------------------------------------------------------------------- /blog-posts/part-1-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-1-intro.md -------------------------------------------------------------------------------- /blog-posts/part-10-pass-profile-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-10-pass-profile-change.md -------------------------------------------------------------------------------- /blog-posts/part-2-creating-a-tenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-2-creating-a-tenant.md -------------------------------------------------------------------------------- /blog-posts/part-3-invoking-web-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-3-invoking-web-api.md -------------------------------------------------------------------------------- /blog-posts/part-4-b2c-app-parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-4-b2c-app-parts.md -------------------------------------------------------------------------------- /blog-posts/part-5-adding-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-5-adding-auth.md -------------------------------------------------------------------------------- /blog-posts/part-6-social-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-6-social-auth.md -------------------------------------------------------------------------------- /blog-posts/part-7-multi-factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-7-multi-factor.md -------------------------------------------------------------------------------- /blog-posts/part-8-point-5-customization.md: -------------------------------------------------------------------------------- 1 | _Not done yet .... more to come here!!!_ -------------------------------------------------------------------------------- /blog-posts/part-8-ui-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-8-ui-customization.md -------------------------------------------------------------------------------- /blog-posts/part-9-functions-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemillmatt/forms-ad-b2c/HEAD/blog-posts/part-9-functions-auth.md --------------------------------------------------------------------------------