diff --git a/src/app/auth/auth.module.ts b/src/app/auth/auth.module.ts index 2d70754..268618b 100644 --- a/src/app/auth/auth.module.ts +++ b/src/app/auth/auth.module.ts @@ -6,7 +6,9 @@ import { AuthComponent } from './auth.component'; import { ReactiveFormsModule } from '@angular/forms'; import { LoginComponent } from './login/login.component'; import { RegisterComponent } from './register/register.component'; - +import { MatButtonModule } from '@angular/material/button'; +import { MatFormFieldModule } from '@angular/material/form-field'; +import {MatInputModule} from '@angular/material/input'; @NgModule({ declarations: [ @@ -17,7 +19,10 @@ import { RegisterComponent } from './register/register.component'; imports: [ CommonModule, AuthRoutingModule, - ReactiveFormsModule + ReactiveFormsModule, + MatButtonModule, + MatFormFieldModule, + MatInputModule ] }) export class AuthModule { } diff --git a/src/app/auth/login/login.component.html b/src/app/auth/login/login.component.html index 76471f7..8761809 100644 --- a/src/app/auth/login/login.component.html +++ b/src/app/auth/login/login.component.html @@ -1,28 +1,18 @@