示例#1
0
 public ActionResult ResetPassword(ResetPasswordModel model)
 {
     throw new NotImplementedException();
 }
示例#2
0
        public ActionResult ResetPassword()
        {
            ResetPasswordModel model = new ResetPasswordModel()
            {
                TokenIsValid = false,
                Username = "******"
            };

            return View(model);
        }