public ActionResult ResetPassword(ResetPasswordModel model) { throw new NotImplementedException(); }
public ActionResult ResetPassword() { ResetPasswordModel model = new ResetPasswordModel() { TokenIsValid = false, Username = "******" }; return View(model); }