public async Task <IActionResult> OnGet()
        {
            string connectionId = User.GetConnectionId();

            if (connectionId == null)
            {
                return(RedirectToPage("./Connect", new { returnUrl = Url.Page("./ConnectionProof") }));
            }

            Proof = await _passportService.GetEmailProof(connectionId);

            return(Page());
        }
 public async Task OnGet()
 {
     Proof = await _passportService.GetEmailProof();
 }