1

I am using the standard new ASP.NET Core 3.1 + Angular project template and I am trying to find the text displayed on the standard Log In page:

enter image description here

This is displayed at https://localhost:xxxxx/Identity/Account/Login

Searching all files in the solution for any text from this form returns no results and I am starting to think it's in a DLL or some other place I don't see. Is that the case?

Where can I modify that text?

Miro J.
  • 4,270
  • 4
  • 28
  • 49

2 Answers2

1

ASP.NET Core provides ASP.NET Core Identity as a Razor Class Library. And it enables us to apply the scaffolder to selectively add the source code contained in the Identity Razor Class Library (RCL), then you can modify the code and change the behavior based on your actual scenario and requirement.

enter image description here

For more information about "Scaffold Identity in ASP.NET Core projects", you can refer to this doc: https://learn.microsoft.com/en-us/aspnet/core/security/authentication/scaffold-identity?view=aspnetcore-3.1&tabs=visual-studio

Fei Han
  • 26,415
  • 1
  • 30
  • 41
0

This appears to have been moved into a Razor Class library, source here.

Noah Stahl
  • 6,905
  • 5
  • 25
  • 36