Activities of "safi"

  1. abp add-package Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton
  2. Add "@volo/abp.aspnetcore.mvc.ui.theme.lepton": "your version" to package.json
  3. Run abp install-libs

above command needs to run in command prompt?

Yes, you can change the layout name.

@{   
    Layout = ...your layout name  
}   

In host, we don't have lepton them and in blazor we have so how can I add lepton in the host project so it will resolve this.

Is there anyone to check this and provide solution

Yes, you can change the layout name.

@{  
    Layout = ...your layout name 
}  

In host, we don't have lepton them and in blazor we have so how can I add lepton in the host project so it will resolve this.

asp-page="/account/register?returnUrl=@Model.ReturnUrl"

no it's not working.

Yes, you can change the layout name.

@{  
    Layout = ...your layout name 
}  

I don't have any customized layout but the problem is this screen comes from blazor and the other screen comes from the host.

Try:

<form method="post" action="@Url.Page("./Register", new { returnUrl = Model.ReturnUrl, returnUrlHash = Model.ReturnUrlHash })">

Replace with

<form method="post" asp-page="/account/register">

Yes thanks it's working but after registration it's going to swagger link.

Hi,

You can change the layout.

@{ 
    Layout = ThemeManager.CurrentTheme.GetApplicationLayout(); 
} 

yes, thanks for the reply it's working but can we show a layout like this.

Current layout :

Needed layout

shiwei.liang@volosoft.com

Hi

I can't share the full project so I shared working files with you in the mail can you please check and revert.

Thanks,

Try:

Since you want to implement registration and login functionality on one page, you know, some parameters are required for registering but not login, so you must manually validate the parameters.

Remove ValidateModel(); and manually validate the parameters

Yes I removed and login functionality is working fine but registration is not working I am using the below code

Can you please help me so that I can close this.

Thanks,

Please reply!

Try:

Since you want to implement registration and login functionality on one page, you know, some parameters are required for registering but not login, so you must manually validate the parameters.

Remove ValidateModel(); and manually validate the parameters

Yes I removed and login functionality is working fine but registration is not working I am using the below code

Can you please help me so that I can close this.

Thanks,

Showing 121 to 130 of 286 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30