diff --git a/src/frontend/app/login/login.component.ts b/src/frontend/app/login/login.component.ts
index 5c136b7da85c7c22da42ef1d902fba619750c46b..6b453248617fa514b4883bc3654dfc1f40ced31b 100644
--- a/src/frontend/app/login/login.component.ts
+++ b/src/frontend/app/login/login.component.ts
@@ -85,10 +85,10 @@ export class LoginComponent implements OnInit {
                 this.loading = false;
                 if (err.error.errors === 'Authentication Failed') {
                     this.notify.error(this.lang.wrongLoginPassword);
-                } else if (err.error.errors === 'Account suspended') {
+                } else if (err.error.errors === 'Account Suspended') {
                     this.notify.error(this.lang.accountSuspended);
-                } else if (err.error.errors === 'Account locked') {
-                    this.notify.error(this.lang.accountLocked + ' ' + this.timeLimit.transform(err.error.time));
+                } else if (err.error.errors === 'Account Locked') {
+                    this.notify.error(this.lang.accountLocked + ' ' + this.timeLimit.transform(err.error.date));
                 } else {
                     this.notify.handleSoftErrors(err);
                 }