|
1 | 1 | <div class="container m-b-10 layout-row layout-lt-md-column align-end gap-1percent"> |
2 | | - <button mat-raised-button color="primary" [routerLink]="['/system', 'roles-and-permissions']"> |
| 2 | + <button mat-raised-button color="primary" class="m-r-10" [routerLink]="['/system', 'roles-and-permissions']"> |
3 | 3 | <fa-icon icon="check" class="m-r-10"></fa-icon> |
4 | 4 | {{ 'labels.buttons.Permissions' | translate }} |
5 | 5 | </button> |
6 | | - <button mat-raised-button color="primary" (click)="changeUserPassword()"> |
| 6 | + <button mat-raised-button color="primary" class="m-r-10" (click)="changeUserPassword()"> |
7 | 7 | <fa-icon icon="cog" class="m-r-10"></fa-icon> |
8 | 8 | {{ 'labels.buttons.Change Password' | translate }} |
9 | 9 | </button> |
10 | 10 | </div> |
11 | 11 | <div class="container layout-column gap-1percent"> |
12 | 12 | <mat-card> |
13 | 13 | <div class="layout-row-wrap"> |
14 | | - <div class="flex-50 header"> |
15 | | - {{ 'labels.inputs.Tenant Id' | translate }} |
| 14 | + <div class="info-box"> |
| 15 | + <div class="header"> |
| 16 | + {{ 'labels.inputs.Tenant Id' | translate }} |
| 17 | + </div> |
| 18 | + <div> |
| 19 | + {{ tenantIdentifier }} |
| 20 | + </div> |
16 | 21 | </div> |
17 | | - <div class="flex-50"> |
18 | | - {{ tenantIdentifier }} |
| 22 | + <div class="info-box"> |
| 23 | + <div class="header"> |
| 24 | + {{ 'labels.inputs.User Id' | translate }} |
| 25 | + </div> |
| 26 | + <div> |
| 27 | + {{ profileData.userId }} |
| 28 | + </div> |
19 | 29 | </div> |
20 | | - <div class="flex-50 header"> |
21 | | - {{ 'labels.inputs.User Id' | translate }} |
| 30 | + <div class="info-box"> |
| 31 | + <div class="header"> |
| 32 | + {{ 'labels.inputs.User Name' | translate }} |
| 33 | + </div> |
| 34 | + <div> |
| 35 | + {{ profileData.username }} |
| 36 | + </div> |
22 | 37 | </div> |
23 | | - <div class="flex-50"> |
24 | | - {{ profileData.userId }} |
| 38 | + <div class="info-box"> |
| 39 | + <div class="header"> |
| 40 | + {{ 'labels.inputs.Office' | translate }} |
| 41 | + </div> |
| 42 | + <div> |
| 43 | + {{ profileData.officeName }} |
| 44 | + </div> |
25 | 45 | </div> |
26 | | - <div class="flex-50 header"> |
27 | | - {{ 'labels.inputs.User Name' | translate }} |
| 46 | + <div class="info-box"> |
| 47 | + <div class="header"> |
| 48 | + {{ 'labels.inputs.Status' | translate }} |
| 49 | + </div> |
| 50 | + <div> |
| 51 | + {{ profileData.authenticated ? 'Authenticated' : 'Not Authenticated' }} |
| 52 | + </div> |
28 | 53 | </div> |
29 | | - <div class="flex-50"> |
30 | | - {{ profileData.username }} |
31 | | - </div> |
32 | | - <div class="flex-50 header"> |
33 | | - {{ 'labels.inputs.Office' | translate }} |
34 | | - </div> |
35 | | - <div class="flex-50"> |
36 | | - {{ profileData.officeName }} |
37 | | - </div> |
38 | | - <div class="flex-50 header"> |
39 | | - {{ 'labels.inputs.Status' | translate }} |
40 | | - </div> |
41 | | - <div class="flex-50"> |
42 | | - {{ profileData.authenticated ? 'Authenticated' : 'Not Authenticated' }} |
43 | | - </div> |
44 | | - <div class="flex-50 header"> |
45 | | - {{ 'labels.inputs.Language' | translate }} |
46 | | - </div> |
47 | | - <div class="flex-50"> |
48 | | - {{ language }} |
| 54 | + <div class="info-box"> |
| 55 | + <div class="header"> |
| 56 | + {{ 'labels.inputs.Language' | translate }} |
| 57 | + </div> |
| 58 | + <div> |
| 59 | + {{ language }} |
| 60 | + </div> |
49 | 61 | </div> |
50 | 62 | </div> |
51 | 63 | </mat-card> |
|
0 commit comments