Activities of "maliming"

hi

I think the simplest solution is to customize the Login page.

hi

https://zoom.us/j/93525863270?pwd=REFjMC9CL2syTGFYYkJWeTNtV1RNUT09

hi

This is normal because the Login page belongs to the Identity Server website

If you want to change it, you can customize the Login page. https://support.abp.io/QA/Questions/160/How-to-customize-an-ABP-project

hi

I can contionue using abp-button like this.

It seems this is the right way.

You can use Elements panel to check the logo.

Btw, A logo-light.png not found.

HI

Can you check what's the style of your logo? confirm the css is applied.

hi

You can try to change the localization translation of the buttons.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.UI/Localization/Resources/AbpUi/AbpUiResource.cs#L6 https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.UI/Localization/Resources/AbpUi/en.json#L6-L12

We will do same change in 4.4

https://github.com/abpframework/abp/pull/9510

hi

You can try to rewrite the logic of the page.

abp\lepton-theme\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton\Themes\Lepton\Layouts\Account\Default.cshtml

Change

 @if (MultiTenancyOptions.Value.IsEnabled &&
              (TenantResolveResultAccessor.Result?.AppliedResolvers?.Contains(CookieTenantResolveContributor.ContributorName) == true))
{

}

to

@if (MultiTenancyOptions.Value.IsEnabled &&
                  (TenantResolveResultAccessor.Result?.AppliedResolvers?.Contains(CookieTenantResolveContributor.ContributorName) == true ||
                   TenantResolveResultAccessor.Result?.AppliedResolvers?.Contains(QueryStringTenantResolveContributor.ContributorName) == true))
{

}

hi

It's should be __tenant by default.

https://docs.abp.io/en/abp/latest/Multi-Tenancy#abpaspnetcoremultitenancyoptions

Showing 7821 to 7830 of 8747 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on December 13, 2024, 06:09