I think so.
hi
How about this?
https://docs.abp.io/en/commercial/latest/themes/lepton-x/blazor
I mean can I reproduce the problem in a new template project or only your project?
How can I reproduce it?
hi
Steps to reproduce the issue?
Will there be an error in a new database?
hi
Please try to add new migrations
dotnet ef migrations add ABP_7_1
hi
You can use this sample to test your email sender.
https://github.com/abpframework/abp-samples/tree/master/EmailSendDemo
hi
Please share some information so that we can understand your situation correctly. Thanks
hi
Authentication.razor.cs
using Microsoft.AspNetCore.Components;
using Volo.Abp.AspNetCore.Components.WebAssembly;
using Volo.Abp.DependencyInjection;
namespace MyCompanyName.MyProjectName.Blazor.Pages;
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXTheme.Pages.Authentication))]
public partial class Authentication
{
public readonly NavigationManager NavigationManager;
public Authentication(
WebAssemblyCachedApplicationConfigurationClient webAssemblyCachedApplicationConfigurationClient,
NavigationManager navigationManager)
: base(webAssemblyCachedApplicationConfigurationClient)
{
NavigationManager = navigationManager;
}
}
Authentication.razor
@inherits Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXTheme.Pages.Authentication
<Card>
<CardBody>
<RemoteAuthenticatorView Action="@Action">
<LoggingIn>
<LoadingIndicator/>
</LoggingIn>
<CompletingLoggingIn>
<LoadingIndicator/>
</CompletingLoggingIn>
<LogOut>
<LoadingIndicator/>
</LogOut>
<CompletingLogOut>
<LoadingIndicator/>
</CompletingLogOut>
<LogOutSucceeded>
@{
NavigationManager.NavigateTo("/authentication/login");
}
</LogOutSucceeded>
</RemoteAuthenticatorView>
</CardBody>
</Card>
Good news.