Reputation: 81
When selecting the Angular template VS 15.3 gives no other authentication choice other than "no authentication". I will be referencing Angular Components in Views. How do I get authentication functionality into the app? TIA
Upvotes: 3
Views: 609
Reputation: 791
You can create an ASP.NET Core 2.0 non-SPA project with authentication. You can then add the classes and other functionality related to server-side authentication to your SPA project.
Additionally see the following documentation: https://learn.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/identity-2x - AND - https://learn.microsoft.com/en-us/aspnet/core/security/authentication/
Upvotes: 1