diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index d369879aecbb95312028d8ee041108d34e7453a0..3391ff6366dba78f11937dd2c24d4fcd1f00531c 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -9,7 +9,7 @@ import { RegisterComponent } from './register/register.component';
 import { PasswordResetComponent } from './password-reset/password-reset.component';
 
 import { AppRoutingModule } from './app-routing.module';
-import { FormsModule } from '@angular/forms';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
 import { PageNotFoundComponent } from './page-not-found/page-not-found.component';
 import { FlexLayoutModule } from '@angular/flex-layout';
 import {
@@ -101,12 +101,13 @@ import { AuthenticationGuard } from './authentication.guard';
     MatTableModule,
     MatTabsModule,
     MatToolbarModule,
-    MatTooltipModule
+    MatTooltipModule,
+    ReactiveFormsModule
   ],
   providers: [
     NotificationService,
     AuthenticationService,
-    AuthenticationGuard
+    AuthenticationGuard,
   ],
   bootstrap: [AppComponent]
 })