Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / app / views / header / user-edit / edit-user.tpl.html
diff --git a/ecomp-portal-FE/client/app/views/header/user-edit/edit-user.tpl.html b/ecomp-portal-FE/client/app/views/header/user-edit/edit-user.tpl.html
new file mode 100644 (file)
index 0000000..719f8bd
--- /dev/null
@@ -0,0 +1,69 @@
+<!--
+  ================================================================================
+  eCOMP Portal
+  ================================================================================
+  Copyright (C) 2017 AT&T Intellectual Property
+  ================================================================================
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+       http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+  ================================================================================
+  -->
+<div class="main" style="margin-top: 5px; height: 350px;">
+                   <div id="title" class="manage-user-home-title">Profile</div>
+       
+                               <div class="edit-user-section" >                
+                                       <div class="input-edit-user-div" >
+                                                 <div  class="">*First Name</div>
+                                                 <input class="input-text-edit-user" type="text"  ng-model="newUser.firstName"/>                                                           
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div  class="">Middle Name</div>
+                                                 <input class="input-text-edit-user" type="text"  ng-model="newUser.middleName"/>                                                          
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div class="">*Last Name</div>
+                                                 <input class="input-text-edit-user" type="text" ng-model="newUser.lastName"/>
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div class="">*Email Address ID</div>
+                                                 <input class="input-text-edit-user" type="text" disabled ng-model="newUser.emailAddress"/>
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div class="">*Login ID</div>
+                                                 <input class="input-text-edit-user" type="text" disabled ng-model="newUser.loginId"/>
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div class="">*Login Password</div>
+                                                 <input class="input-text-edit-user" type="password" ng-model="newUser.loginPwd" ng-change="changePwdText()"/>
+                                       </div>
+                                       <div class="input-edit-user-div" >
+                                                 <div class="">*Confirm Login Password</div>
+                                                 <input class="input-text-edit-user" type="password" ng-model="newUser.loginPwdCheck"/>
+                                       </div>
+                               </div>
+                               <div style="bottom: 2px; height:50px;width:180px;margin-top:60px">
+                                               <div class="dialog-control">
+                                                       <div id="div-updateAdminAppsRoles" class="next-button" ng-click="updateUserFun()"
+                                            ng-class="{disabled: false}">Save
+                                       </div>
+                                       <div id="div-cancel-button" class="cancel-button" ng-click="closeThisDialog()">Cancel</div>
+                               </div>
+                               </div>
+                               
+                               
+</div>
+       
+<script type="application/javascript">
+    $(document).ready(function(){
+        $(".ngdialog-content").css("width","85%")
+    });
+</script>
\ No newline at end of file