diff --git a/support-portal-frontend/src/app/component/login/login.component.html b/support-portal-frontend/src/app/component/login/login.component.html
index 11a2fb2..b9c298c 100644
--- a/support-portal-frontend/src/app/component/login/login.component.html
+++ b/support-portal-frontend/src/app/component/login/login.component.html
@@ -29,8 +29,7 @@
diff --git a/support-portal-frontend/src/app/component/register/register.component.html b/support-portal-frontend/src/app/component/register/register.component.html
index 159f1b9..5e2f80b 100644
--- a/support-portal-frontend/src/app/component/register/register.component.html
+++ b/support-portal-frontend/src/app/component/register/register.component.html
@@ -52,8 +52,7 @@
diff --git a/support-portal-frontend/src/app/component/user/user.component.html b/support-portal-frontend/src/app/component/user/user.component.html
index 2cc7635..11661b9 100644
--- a/support-portal-frontend/src/app/component/user/user.component.html
+++ b/support-portal-frontend/src/app/component/user/user.component.html
@@ -60,8 +60,7 @@
@@ -90,8 +89,9 @@
{{appUser?.username}} |
{{appUser?.email}} |
- Active
- Inactive
+
+ {{appUser?.active ? 'Active' : 'Inactive'}}
+
|
@@ -124,8 +124,7 @@
@@ -221,12 +220,13 @@
(read only)
-
@@ -240,7 +240,8 @@
-
@@ -258,8 +259,7 @@
@@ -326,8 +326,10 @@
class="pt-sm-2 pb-1 mb-0 text-nowrap">{{selectedUser.firstName}} {{selectedUser.lastName}}
{{selectedUser.username}}
Status:
- Active
- Inactive
+
+ {{selectedUser.active ? 'Active' : 'Inactive'}}
+
Last Login: {{selectedUser.lastLoginDateDisplay | date: 'medium' }}
@@ -353,13 +355,11 @@
{{ selectedUser.lastLoginDateDisplay | date: 'medium' }}
-
-
- Account Locked
-
-
-
- Account Unlocked
+
+
+ Account {{selectedUser?.notLocked ? 'Unlocked' : 'Locked'}}
@@ -374,7 +374,8 @@
-
@@ -428,8 +429,7 @@
(change)="onProfileImageChange($any($event).target.files)"
class="custom-file-input">
@@ -517,8 +517,7 @@
(change)="onProfileImageChange($any($event).target.files)"
class="custom-file-input" [disabled]="!isManager">
|