I am building an ASP.NET Core MVC web app targeting .NET Core 3.1.
I've enabled authentication type "Individual Accounts" and that created login and register pages.
When I run the project, I can see the link of my login page was
https://localhost:44344/Identity/Account/Login
but I can not find html login page in that path
Identity/Account/Login
Also I do search in my repo folder where my project is exists, still can't find it. There is nothing in my solution project ... there is only _LoginPartial.cshtml
So where is this file stored?
And if it does not exist or is created dynamically in some way, how can I redesign the login or register html pages?
