新增密码更新控制器

This commit is contained in:
dathlin
2017-08-02 22:50:37 +08:00
parent 5ab7c6bdd2
commit 460a6f313b

View File

@@ -160,5 +160,18 @@ namespace 软件系统浏览器模版.Controllers
ViewData[SessionItemsDescription.UserAccount] = Session[SessionItemsDescription.UserAccount];
return View();
}
//GET
/// <summary>
/// 更改账户的密码的页面,更改密码之前需要对旧的密码进行验证
/// </summary>
/// <returns></returns>
public ActionResult ChangePassword()
{
return View();
}
}
}