aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app.module.ts
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-03-05 22:03:03 +0100
committerSonja Galovic <galovicsonja@gmail.com>2022-03-05 22:03:03 +0100
commitcd2188997ff4cbcce83e3cada3fc220375ebc78e (patch)
tree3e82fff661cc20c33198c0f330e3f8c733a6e0a4 /frontend/src/app/app.module.ts
parent843c57eba8709d1001cf8cae3a0180f865171167 (diff)
Login and Register page - v. 0.1.0
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r--frontend/src/app/app.module.ts16
1 files changed, 13 insertions, 3 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index b1c6c96a..39d75e89 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -1,16 +1,26 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
-
+import { FormsModule } from '@angular/forms';
import { AppRoutingModule } from './app-routing.module';
+import { HttpClientModule } from '@angular/common/http';
+
import { AppComponent } from './app.component';
+import { LoginPageComponent } from './_pages/login-page/login-page.component';
+import { RegisterPageComponent } from './_pages/register-page/register-page.component';
+import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [
- AppComponent
+ AppComponent,
+ LoginPageComponent,
+ RegisterPageComponent
],
imports: [
BrowserModule,
- AppRoutingModule
+ AppRoutingModule,
+ FormsModule,
+ HttpClientModule,
+ NgbModule
],
providers: [],
bootstrap: [AppComponent]