diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index f80f4b8..c6b623b 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -13,6 +13,10 @@ const routes: Routes = [
{
path: 'signup',
loadChildren: () => import('./signup/signup.module').then( m => m.SignupPageModule)
+ },
+ {
+ path: 'login',
+ loadChildren: () => import('./login/login.module').then( m => m.LoginPageModule)
}
];
@NgModule({
diff --git a/src/app/login/login-routing.module.ts b/src/app/login/login-routing.module.ts
new file mode 100644
index 0000000..29ef3a2
--- /dev/null
+++ b/src/app/login/login-routing.module.ts
@@ -0,0 +1,17 @@
+import { NgModule } from '@angular/core';
+import { Routes, RouterModule } from '@angular/router';
+
+import { LoginPage } from './login.page';
+
+const routes: Routes = [
+ {
+ path: '',
+ component: LoginPage
+ }
+];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule],
+})
+export class LoginPageRoutingModule {}
diff --git a/src/app/login/login.module.ts b/src/app/login/login.module.ts
new file mode 100644
index 0000000..5eda226
--- /dev/null
+++ b/src/app/login/login.module.ts
@@ -0,0 +1,20 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { FormsModule } from '@angular/forms';
+
+import { IonicModule } from '@ionic/angular';
+
+import { LoginPageRoutingModule } from './login-routing.module';
+
+import { LoginPage } from './login.page';
+
+@NgModule({
+ imports: [
+ CommonModule,
+ FormsModule,
+ IonicModule,
+ LoginPageRoutingModule
+ ],
+ declarations: [LoginPage]
+})
+export class LoginPageModule {}
diff --git a/src/app/login/login.page.html b/src/app/login/login.page.html
new file mode 100644
index 0000000..16d1acb
--- /dev/null
+++ b/src/app/login/login.page.html
@@ -0,0 +1,9 @@
+
+
+ Login
+
+
+
+
+
+
diff --git a/src/app/login/login.page.scss b/src/app/login/login.page.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/login/login.page.spec.ts b/src/app/login/login.page.spec.ts
new file mode 100644
index 0000000..07cb76a
--- /dev/null
+++ b/src/app/login/login.page.spec.ts
@@ -0,0 +1,24 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+import { IonicModule } from '@ionic/angular';
+
+import { LoginPage } from './login.page';
+
+describe('LoginPage', () => {
+ let component: LoginPage;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ LoginPage ],
+ imports: [IonicModule.forRoot()]
+ }).compileComponents();
+
+ fixture = TestBed.createComponent(LoginPage);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ }));
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/login/login.page.ts b/src/app/login/login.page.ts
new file mode 100644
index 0000000..141f59e
--- /dev/null
+++ b/src/app/login/login.page.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-login',
+ templateUrl: './login.page.html',
+ styleUrls: ['./login.page.scss'],
+})
+export class LoginPage implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}