ABP Framework version: v8.3
UI Type: Angular
Database System: EF Core (PostgreSQL)
Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
Exception message and full stack trace:
Steps to reproduce the issue:
Hi Team,
We would want to modify the below on login page
- to change the logo
- to change the title
- to remove register
- to remove forget password password
Please could you let us know the steps, the files and the location of the files to be changed.
Regards Sahana
3 Answer(s)
-
0
Hi,
to change the logo to change the title
You can change them via
YourProjectNameBrandingProvider
https://abp.io/docs/latest/framework/ui/mvc-razor-pages/brandingto remove register
You can disable self-registration
to remove forget password password
1 You can override the login page to remove
forget password password
- Here is the document to explain how to override UI: https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface
- You can download the source code via abp suite
2 Override the forget password page model
[Dependency(ReplaceServices = true)] [ExposeServices(typeof(ForgotPasswordModel))] public class MyForgotPasswordModel : ForgotPasswordModel { public override Task<IActionResult> OnGetAsync() { return Task.FromResult<IActionResult>(NotFound()); } public override Task<IActionResult> OnPostAsync() { return Task.FromResult<IActionResult>(NotFound()); } }
-
0
Hi,
- The solution provided for the below is for mvc razor pages. we need it for angular
to change the logo to change the title
- to remove register
this would be a UI setting change. what if i want it to be a generalized setting
- to remove forget password password
The solution provide is for mvc and we need it for angular.
-
0
Hi,
The angular uses code flow to login, it will redirect to the back-end (MVC)