hi
What is your abp package version?
hi
Blazor UI: Customization / Overriding Components
This document explains how to override the user interface of a depended application module or theme for Blazor applications.
https://abp.io/docs/latest/framework/ui/blazor/customization-overriding-components
hi
You can reply here: https://abp.io/support/questions/10098/How-to-change-the-UI-for-user-management
Current question credit refunded.
Thanks.
hi
add setting to change the SignOut Time
You can change the time on the account -> Idle session timeout page.
add localization key to the Modal message.
The Key of AccountResource are:
"YourSessionIsAboutToExpire": "Your session is about to expire",
"YourSessionIsAboutToExpireInfo": "For security reasons, your connection times out after you've been inactive for a while. Do you want to stay signed in?",
"IdleSignOutNow": "Sign out now",
"IdleStaySignedIn": "Stay signed in",
Thanks.
hi
Can you share a new template project with your code?
liming.ma@volosoft.com
Thanks.
hi
I will ask our angular team.
Thanks.
hi
What is your abp version?
Can you try to override the RegisterModel?
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(RegisterModel), typeof(MyRegisterModel))]
public class MyRegisterModel : RegisterModel
{
public MyRegisterModel(
IAuthenticationSchemeProvider schemeProvider,
IOptions<AbpAccountOptions> accountOptions,
IAccountExternalProviderAppService accountExternalProviderAppService,
ICurrentPrincipalAccessor currentPrincipalAccessor,
IHttpClientFactory httpClientFactory)
: base(schemeProvider, accountOptions, accountExternalProviderAppService, currentPrincipalAccessor, httpClientFactory)
{
}
public override async Task<IActionResult> OnPostAsync()
{
await IdentityOptions.SetAsync();
return await base.OnPostAsync();
}
}
Thanks.
hi
Can you share a template project?
liming.ma@volosoft.com
Thanks.
https://github.com/abpframework/abp/pull/24152