Modified and redesign login page html in ASP.NET Core 3.1 MVC

Viewed 495

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

here is my solution explorer

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?

2 Answers

Did you include the css file in _LayoutlandPage.cshtml

<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" />
Related