0
Spospisil created
- ABP Framework version: v4.4.2
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
- Steps to reproduce the issue:"
I've implemented the DefaultBrandingProvider class to put the logon on the identity server 'login' screen and it does not use the image I provided in the logoUrl property.
1 Answer(s)
-
0
Hi @Spospisil, you need to override
LogoReverseUrl
inYourProjectBrandingProvider
on your *.Web layer.[Dependency(ReplaceServices = true)] public class YourProjectBrandingProvider : DefaultBrandingProvider { public override string AppName => "YourProjectName"; public override string LogoReverseUrl => "/images/logo/abp-purple.png"; //override LogoReverseUrl }
I've added an image under wwwroot/images/logo named abp-purple.png. And I've also cleared the cache to see the result.