diff --git a/src/app/services/http/authentication.service.ts b/src/app/services/http/authentication.service.ts
index 32896f412ac95f7bcf050064e2841e7d7681ef40..bc67345973184c84acad75632dbbebf687eaceb6 100644
--- a/src/app/services/http/authentication.service.ts
+++ b/src/app/services/http/authentication.service.ts
@@ -67,7 +67,12 @@ export class AuthenticationService {
   }
 
   resetPassword(email: string): Observable<boolean> {
-    const connectionUrl: string = this.apiUrl.v2 + this.apiUrl.user + email + this.apiUrl.resetPassword;
+    const connectionUrl: string =
+        this.apiUrl.v2 +
+        this.apiUrl.user +
+        '/' +
+        email +
+        this.apiUrl.resetPassword;
 
     return this.http.post(connectionUrl, {
       key: null,