@using DysonNetwork.Sphere.Localization @using Microsoft.Extensions.Localization @using EmailResource = DysonNetwork.Sphere.Localization.EmailResource

@(Localizer["PasswordResetHeader"])

@(Localizer["PasswordResetPara1"]) @@@Name,

@(Localizer["PasswordResetPara2"])

@(Localizer["PasswordResetPara3"])

@(LocalizerShared["EmailLinkHint"])
@Link

@(Localizer["PasswordResetPara4"])

@(LocalizerShared["EmailFooter1"])
@(LocalizerShared["EmailFooter2"])

@code { [Parameter] public required string Name { get; set; } [Parameter] public required string Link { get; set; } [Inject] IStringLocalizer Localizer { get; set; } = null!; [Inject] IStringLocalizer LocalizerShared { get; set; } = null!; }