diff options
author | Manoop Talasila <talasila@research.att.com> | 2019-05-28 18:25:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-28 18:25:02 +0000 |
commit | ba546e970d779a5e87a07b3058a85e1446c39129 (patch) | |
tree | c0ff8b475b093ee2a3345063fd624e3ce4032d1c /ecomp-portal-FE-os/client/src/views/header | |
parent | 59eebbf3cb31d01345d973098a73a866b1d08466 (diff) | |
parent | f9a1944a4b3cda8d9708087902a52baa40c0e2ea (diff) |
Merge "Removed user password from portal's profile API"
Diffstat (limited to 'ecomp-portal-FE-os/client/src/views/header')
2 files changed, 1 insertions, 11 deletions
diff --git a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js index 385697fa..597f9b37 100644 --- a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js +++ b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js @@ -45,7 +45,6 @@ this.email =''; this.loginId =''; this.loginPwd =''; - this.confirmLoginPwd='' this.isLoading = false; let getUser = () => { this.isLoading = true; @@ -75,14 +74,10 @@ loginId :this.loginId, loginPassword :this.loginPwd } - if (this.firstName =='' || this.lastName == '' || this.email == '' || this.loginId =='' || this.loginPwd ==''|| this.confirmLoginPwd ==''){ + if (this.firstName =='' || this.lastName == '' || this.email == '' || this.loginId =='' || this.loginPwd ==''){ var warningMsg = "Please enter a value for all fields marked with *."; confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); return; - } else if (this.loginPwd != this.confirmLoginPwd) { - var warningMsg = "Passwords do not match, please try again."; - confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); - return; } else { // check password length complexity. var warningMsg = adminsService.isComplexPassword(this.loginPwd); diff --git a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html index 79c85a18..2ccb03c6 100644 --- a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html +++ b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html @@ -67,11 +67,6 @@ <div class="">*Login Password</div> <input type="password" ng-model="profileDetail.loginPwd" /> </div> - <div class="profile-edit-div"> - <div class="">*Confirm Login Password</div> - <input type="password" - ng-model="profileDetail.confirmLoginPwd" /> - </div> </div> </div> <div class="dialog-control"> |