@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

Welcome back

Sign in to continue verifying CVs

@if (!string.IsNullOrEmpty(_errorMessage)) { }
New to TrueCV?

CV Verification Made Simple

Upload any CV and get instant AI-powered verification with detailed analysis of qualifications, experience, and company legitimacy.

10K+
CVs Verified
98%
Accuracy Rate
<30s
Average Time
"TrueCV has transformed our hiring process. We catch discrepancies we would have missed before."
- HR Director, Tech Company
@code { private string? _errorMessage; [SupplyParameterFromQuery] public string? ReturnUrl { get; set; } [SupplyParameterFromQuery(Name = "error")] public string? Error { get; set; } protected override void OnInitialized() { _errorMessage = Error; } }