Hi.
I have created a new Core 3.0 web app and followed the quickstart guide on how to implement login functionality in Asp.Net Core 2.1, since there is no guide for 3.0.
A lot of the things are very similar, and my code looks almost the same as in the guide. The only difference is that I started with a Core 3.0 project.
When I start the app it seams like there are some problems with understanding that the app does not use controllers, since Core 3.0 uses Razor Pages by default.
I managed to make my web app create an endpoint for AccountController methods, but when I hit the Login method, I am met by a Page Not Found (the default Chrome one).
I have also read the Core 3.0 API guide, which was released a few months ago, but that does not seem to explain anything.
Is there something different that I need to know in order to implement Auth0 authentication in a Core 3.0 web application as opposed to 2.1?
Please enlighten me.
I am still very new to both web apps, authentication and Auth0, so all help is appreciated.