Try your search with a different keyword or use * as a wildcard.
@model PasswordRecoveryConfirmModel
@{
Layout = "_ColumnsOne";
//title
NopHtml.AddTitleParts(T("PageTitle.PasswordRecovery").Text);
//page class
NopHtml.AppendPageCssClassParts("html-password-recovery-page");
}
@T("Account.PasswordRecovery")
@if (!string.IsNullOrEmpty(Model.Result))
{
@Model.Result
}
@if (!Model.DisablePasswordChanging)
{
}