diff --git a/support-portal-frontend/src/app/app.module.ts b/support-portal-frontend/src/app/app.module.ts index 445746b..d092c67 100644 --- a/support-portal-frontend/src/app/app.module.ts +++ b/support-portal-frontend/src/app/app.module.ts @@ -12,6 +12,7 @@ import {LoginComponent} from './component/login/login.component'; import {RegisterComponent} from './component/register/register.component'; import {UserComponent} from './component/user/user.component'; import {AppRoutingModule} from './app-routing.module'; +import {FormsModule} from "@angular/forms"; @NgModule({ declarations: [ @@ -24,7 +25,8 @@ import {AppRoutingModule} from './app-routing.module'; BrowserModule, HttpClientModule, NotificationModule, - AppRoutingModule + AppRoutingModule, + FormsModule ], providers: [AuthenticationGuard, AuthenticationService, UserService, {provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true} 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 c3b7f6f..c4dcac1 100644 --- a/support-portal-frontend/src/app/component/login/login.component.html +++ b/support-portal-frontend/src/app/component/login/login.component.html @@ -7,33 +7,37 @@