diff --git a/Mohem/src/app/profile/add-address/add-address.component.html b/Mohem/src/app/profile/add-address/add-address.component.html
new file mode 100644
index 00000000..68757de5
--- /dev/null
+++ b/Mohem/src/app/profile/add-address/add-address.component.html
@@ -0,0 +1,3 @@
+
+ add-address works!
+
diff --git a/Mohem/src/app/profile/add-address/add-address.component.scss b/Mohem/src/app/profile/add-address/add-address.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Mohem/src/app/profile/add-address/add-address.component.spec.ts b/Mohem/src/app/profile/add-address/add-address.component.spec.ts
new file mode 100644
index 00000000..230a9c8c
--- /dev/null
+++ b/Mohem/src/app/profile/add-address/add-address.component.spec.ts
@@ -0,0 +1,27 @@
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { AddAddressComponent } from './add-address.component';
+
+describe('AddAddressComponent', () => {
+ let component: AddAddressComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ AddAddressComponent ],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(AddAddressComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Mohem/src/app/profile/add-address/add-address.component.ts b/Mohem/src/app/profile/add-address/add-address.component.ts
new file mode 100644
index 00000000..4283c002
--- /dev/null
+++ b/Mohem/src/app/profile/add-address/add-address.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-add-address',
+ templateUrl: './add-address.component.html',
+ styleUrls: ['./add-address.component.scss'],
+})
+export class AddAddressComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}
diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.html b/Mohem/src/app/profile/confirm-address/confirm-address.component.html
new file mode 100644
index 00000000..5bb94ad6
--- /dev/null
+++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.html
@@ -0,0 +1,3 @@
+
+ confirm-address works!
+
diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.scss b/Mohem/src/app/profile/confirm-address/confirm-address.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts b/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts
new file mode 100644
index 00000000..1dd47b56
--- /dev/null
+++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts
@@ -0,0 +1,27 @@
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ConfirmAddressComponent } from './confirm-address.component';
+
+describe('ConfirmAddressComponent', () => {
+ let component: ConfirmAddressComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ ConfirmAddressComponent ],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ConfirmAddressComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.ts b/Mohem/src/app/profile/confirm-address/confirm-address.component.ts
new file mode 100644
index 00000000..0af75309
--- /dev/null
+++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-confirm-address',
+ templateUrl: './confirm-address.component.html',
+ styleUrls: ['./confirm-address.component.scss'],
+})
+export class ConfirmAddressComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}