@using Nop.Core.Http.Extensions @using Nop.Services.Authentication @{ var session = Context.Session; var errors = await session.GetAsync>(NopAuthenticationDefaults.ExternalAuthenticationErrorsSessionKey); if (errors != null) session.Remove(NopAuthenticationDefaults.ExternalAuthenticationErrorsSessionKey); } @if (errors != null && errors.Count > 0) {
}