PlayChangePassword.cshtml 479 B

1234567891011121314151617181920
  1. 
  2. @model WeOnlineApp.Controllers.UserProfileViewModel
  3. @{
  4. Layout = "~/Views/Shared/Layout/_Layout.Play.cshtml";
  5. ViewBag.Title = L("ChangePasswordTitle");
  6. ViewBag.PageId = "profile";
  7. }
  8. <style>
  9. .iwb-info-box .box-header, .iwb-info-box .box-footer {
  10. color: #049e9a
  11. }
  12. .btn.btn-iwb {
  13. color: #fff;
  14. background-color: #049e9a;
  15. border-color: #049e9a;
  16. box-shadow: none;
  17. }
  18. </style>
  19. @Html.Partial("User/_ChangePassword")