Merge "Removed user password from portal's profile API"
[portal.git] / ecomp-portal-FE-os / client / src / views / header / profile-edit-dialogs / profile-edit.modal.html
1 <!--
2   ============LICENSE_START==========================================
3   ONAP Portal
4   ===================================================================
5   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6   ===================================================================
7  
8   Unless otherwise specified, all software contained herein is licensed
9   under the Apache License, Version 2.0 (the "License");
10   you may not use this software except in compliance with the License.
11   You may obtain a copy of the License at
12  
13               http://www.apache.org/licenses/LICENSE-2.0
14  
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20  
21   Unless otherwise specified, all documentation contained herein is licensed
22   under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23   you may not use this documentation except in compliance with the License.
24   You may obtain a copy of the License at
25  
26               https://creativecommons.org/licenses/by/4.0/
27  
28   Unless required by applicable law or agreed to in writing, documentation
29   distributed under the License is distributed on an "AS IS" BASIS,
30   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31   See the License for the specific language governing permissions and
32   limitations under the License.
33  
34   ============LICENSE_END============================================
35  
36   
37   -->
38 <div class="profile-detail-modal">
39         <div id="div-profile-detail" class="prodile-detail">
40                 <div class="title" id="title">Profile Detail</div>
41                 <span class="ecomp-spinner" ng-show="profileDetail.isLoading"></span>
42                 
43                 <div class="app-roles-main" ng-hide="profileDetail.isLoading">
44                         <div id="profile-div">
45                                 <div>
46                                         <div class="profile-edit-div">
47                                                 <div class="">*First Name</div>
48                                                 <input type="text" ng-model="profileDetail.firstName" />
49                                         </div>
50                                         <div class="profile-edit-div">
51                                                 <div class="">Middle Name</div>
52                                                 <input type="text" ng-model="profileDetail.middleName" />
53                                         </div>
54                                         <div class="profile-edit-div">
55                                                 <div class="">*Last Name</div>
56                                                 <input type="text" ng-model="profileDetail.lastName" />
57                                         </div>
58                                         <div class="profile-edit-div">
59                                                 <div class="">*Email Address ID</div>
60                                                 <input type="text" ng-model="profileDetail.email"  readonly="readonly" />
61                                         </div>
62                                         <div class="profile-edit-div">
63                                                 <div class="">*Login ID</div>
64                                                 <input type="text" ng-model="profileDetail.loginId"  readonly="readonly" />
65                                         </div>
66                                         <div class="profile-edit-div">
67                                                 <div class="">*Login Password</div>
68                                                 <input type="password" ng-model="profileDetail.loginPwd" />
69                                         </div>
70                                 </div>
71                         </div>
72                         <div class="dialog-control">
73                                 <span class="ecomp-save-spinner" ng-show="newAdmin.isSaving"></span>
74                                 <button id="div-updateAdminAppsRoles" class="btn btn-alt btn-small"
75                                         ng-click="profileDetail.save()"
76                                         ng-class="{disabled: false}">Save</button>
77                                 <button id="div-cancel-button" class="btn btn-alt btn-small"
78                                         ng-click="closeThisDialog()">Cancel</button>
79                         </div>
80                 </div>
81         </div>
82 </div>