[UI] Handling users and passwords
[validation.git] / ui / src / main / webapp / app / BluvalUI / CreateUser / CreateUserTemplate.html
1 <!--
2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
17 <div id="page-content" class="content" style="padding: 25px;">
18     <div>
19         <h1 class="heading-page">Create User</h1>
20
21         <div class="Column">
22             <div class="form-row">
23                 <label for="textinputID-3a">Define login id: </label> <input
24                     ng-model="definedLoginId"</input>
25             </div>
26         </div>
27         <br>
28
29         <div class="Column">
30             <div class="form-row">
31                 <label for="textinputID-3a">Define first name: </label>
32                 <input ng-model="definedFirstName"</input>
33             </div>
34         </div>
35         <br>
36
37         <div class="Column">
38             <div class="form-row">
39                 <label for="textinputID-3a">Define login
40                     password: </label> <input type="password"
41                     ng-model="definedLoginPwd"</input>
42             </div>
43         </div>
44         <br>
45
46         <div>
47             <div class="form-row">
48                 <label for="textinputID-3a">Define user role: </label> <select
49                     ng-model="selectedRole"
50                     ng-change="selectedRoleChange()"
51                     ng-options="y for y in roles">
52                 </select>
53             </div>
54         </div>
55         <br>
56
57         <div class="fn-ebz-container"
58             style="position: relative; top: 25px;">
59             <button href="javascript:void(0)" id="addbtn"
60                 style="bottom: -17px;" size="small"
61                 att-accessibility-click="13,32"
62                 class="btn btn-alt btn-small" ng-click="register();">Create</button>
63         </div>
64     </div>
65 </div>