Created
May 28, 2018 16:10
-
-
Save YhorbyMatias/bbae5755c43aa5a9b20024247fc67ad3 to your computer and use it in GitHub Desktop.
scrit recobrar pass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GET: /Account/ForgotPassword | |
[AllowAnonymous] | |
public ActionResult ForgotPassword() | |
{ | |
return View(); | |
} | |
// | |
// POST: /Account/ForgotPassword | |
[HttpPost] | |
[AllowAnonymous] | |
[ValidateAntiForgeryToken] | |
public async Task<ActionResult> ForgotPassword(ForgotPasswordViewModel model) | |
{ | |
if (ModelState.IsValid) | |
{ | |
var user = await UserManager.FindByEmailAsync(model.Email); | |
if (user == null || !(await UserManager.IsEmailConfirmedAsync(user.Id))) | |
{ | |
// Don't reveal that the user does not exist or is not confirmed | |
return View("ForgotPasswordConfirmation"); | |
} | |
// For more information on how to enable account confirmation and password reset please visit https://go.microsoft.com/fwlink/?LinkID=320771 | |
// Send an email with this link | |
string code = await UserManager.GeneratePasswordResetTokenAsync(user.Id); | |
var callbackUrl = Url.Action("ResetPassword", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme); | |
await UserManager.SendEmailAsync(user.Id, "Reset Password", "Please reset your password by clicking <a href=\"" + callbackUrl + "\">here</a>"); | |
return RedirectToAction("ForgotPasswordConfirmation", "Account"); | |
} | |
// If we got this far, something failed, redisplay form | |
return View(model); | |
} | |
// | |
// GET: /Account/ForgotPasswordConfirmation | |
[AllowAnonymous] | |
public ActionResult ForgotPasswordConfirmation() | |
{ | |
return View(); | |
} | |
// | |
// GET: /Account/ResetPassword | |
[AllowAnonymous] | |
public ActionResult ResetPassword(string code) | |
{ | |
return code == null ? View("Error") : View(); | |
} | |
// | |
// POST: /Account/ResetPassword | |
[HttpPost] | |
[AllowAnonymous] | |
[ValidateAntiForgeryToken] | |
public async Task<ActionResult> ResetPassword(ResetPasswordViewModel model) | |
{ | |
if (!ModelState.IsValid) | |
{ | |
return View(model); | |
} | |
var user = await UserManager.FindByEmailAsync(model.Email); | |
if (user == null) | |
{ | |
// Don't reveal that the user does not exist | |
return RedirectToAction("ResetPasswordConfirmation", "Account"); | |
} | |
var result = await UserManager.ResetPasswordAsync(user.Id, model.Code, model.Password); | |
if (result.Succeeded) | |
{ | |
return RedirectToAction("ResetPasswordConfirmation", "Account"); | |
} | |
AddErrors(result); | |
return View(); | |
} | |
// | |
// GET: /Account/ResetPasswordConfirmation | |
[AllowAnonymous] | |
public ActionResult ResetPasswordConfirmation() | |
{ | |
return View(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment