5 references to Input
Microsoft.AspNetCore.Identity.UI (5)
Areas\Identity\Pages\V5\Account\Register.cshtml.cs (5)
131
await _userStore.SetUserNameAsync(user,
Input
.Email, CancellationToken.None);
132
await _emailStore.SetEmailAsync(user,
Input
.Email, CancellationToken.None);
133
var result = await _userManager.CreateAsync(user,
Input
.Password);
148
await _emailSender.SendConfirmationLinkAsync(user,
Input
.Email, HtmlEncoder.Default.Encode(callbackUrl));
152
return RedirectToPage("RegisterConfirmation", new { email =
Input
.Email, returnUrl = returnUrl });