public async Task <IActionResult> OnPostAsync(string returnUrl = null) { returnUrl = returnUrl ?? Url.Content("~/"); if (ModelState.IsValid) { // Asigno los valores ingresados en el formulario a las variables. var user = new IgnisMercado.Areas.Identity.Data.ApplicationUser { Name = Input.Name, DOB = Input.DOB, UserName = Input.Email, Email = Input.Email }; // Asigno role al usuario. user.AssignRole(this._userManager, Input.Role); // Asigno al usuario el status activo. user.StatusHabilitar(); var result = await _userManager.CreateAsync(user, Input.Password); if (result.Succeeded) { IdentityResult addRoleResult = this._userManager.AddToRoleAsync(user, Input.Role).Result; if (!addRoleResult.Succeeded) { throw new InvalidOperationException( $"Error intentando agregar el rol '{Input.Role}' al usuario '{user}'."); } _logger.LogInformation("User created a new account with password."); var code = await _userManager.GenerateEmailConfirmationTokenAsync(user); var callbackUrl = Url.Page( "/Account/ConfirmEmail", pageHandler: null, values: new { userId = user.Id, code = code }, protocol: Request.Scheme); await _emailSender.SendEmailAsync(Input.Email, "Confirm your email", $"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>."); await _signInManager.SignInAsync(user, isPersistent : false); return(LocalRedirect(returnUrl)); } foreach (var error in result.Errors) { ModelState.AddModelError(string.Empty, error.Description); } } // If we got this far, something failed, redisplay form return(Page()); }