@page "/account/login" @using TrueCV.Web.Components.Layout @layout MainLayout @using Microsoft.AspNetCore.Identity @using TrueCV.Infrastructure.Identity @inject SignInManager SignInManager @inject NavigationManager NavigationManager Login - TrueCV
TrueCV

Welcome Back

Sign in to your TrueCV account

@if (!string.IsNullOrEmpty(_errorMessage)) { }

Don't have an account? Create one

@code { private string? _errorMessage; [SupplyParameterFromQuery] public string? ReturnUrl { get; set; } [SupplyParameterFromQuery(Name = "error")] public string? Error { get; set; } protected override void OnInitialized() { _errorMessage = Error; } }