diff --git a/Mohem/src/app/eit/add-cei/add-cei.component.html b/Mohem/src/app/eit/add-cei/add-cei.component.html
new file mode 100644
index 00000000..bda6751d
--- /dev/null
+++ b/Mohem/src/app/eit/add-cei/add-cei.component.html
@@ -0,0 +1,3 @@
+
+ add-cei works!
+
diff --git a/Mohem/src/app/eit/add-cei/add-cei.component.scss b/Mohem/src/app/eit/add-cei/add-cei.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Mohem/src/app/eit/add-cei/add-cei.component.spec.ts b/Mohem/src/app/eit/add-cei/add-cei.component.spec.ts
new file mode 100644
index 00000000..fa819bbd
--- /dev/null
+++ b/Mohem/src/app/eit/add-cei/add-cei.component.spec.ts
@@ -0,0 +1,27 @@
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { AddCeiComponent } from './add-cei.component';
+
+describe('AddCeiComponent', () => {
+ let component: AddCeiComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ AddCeiComponent ],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(AddCeiComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Mohem/src/app/eit/add-cei/add-cei.component.ts b/Mohem/src/app/eit/add-cei/add-cei.component.ts
new file mode 100644
index 00000000..de223c5d
--- /dev/null
+++ b/Mohem/src/app/eit/add-cei/add-cei.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-add-cei',
+ templateUrl: './add-cei.component.html',
+ styleUrls: ['./add-cei.component.scss'],
+})
+export class AddCeiComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}
diff --git a/Mohem/src/app/eit/cei-homepage/cei-homepage.component.html b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.html
new file mode 100644
index 00000000..69b119b1
--- /dev/null
+++ b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.html
@@ -0,0 +1,3 @@
+
+ cei-homepage works!
+
diff --git a/Mohem/src/app/eit/cei-homepage/cei-homepage.component.scss b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Mohem/src/app/eit/cei-homepage/cei-homepage.component.spec.ts b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.spec.ts
new file mode 100644
index 00000000..3ebdf92c
--- /dev/null
+++ b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.spec.ts
@@ -0,0 +1,27 @@
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CeiHomepageComponent } from './cei-homepage.component';
+
+describe('CeiHomepageComponent', () => {
+ let component: CeiHomepageComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ CeiHomepageComponent ],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CeiHomepageComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Mohem/src/app/eit/cei-homepage/cei-homepage.component.ts b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.ts
new file mode 100644
index 00000000..3a70a668
--- /dev/null
+++ b/Mohem/src/app/eit/cei-homepage/cei-homepage.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-cei-homepage',
+ templateUrl: './cei-homepage.component.html',
+ styleUrls: ['./cei-homepage.component.scss'],
+})
+export class CeiHomepageComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}
diff --git a/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.html b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.html
new file mode 100644
index 00000000..f31f1941
--- /dev/null
+++ b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.html
@@ -0,0 +1,3 @@
+
+ confirm-add-cei works!
+
diff --git a/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.scss b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.scss
new file mode 100644
index 00000000..e69de29b
diff --git a/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.spec.ts b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.spec.ts
new file mode 100644
index 00000000..2cf5f990
--- /dev/null
+++ b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.spec.ts
@@ -0,0 +1,27 @@
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ConfirmAddCeiComponent } from './confirm-add-cei.component';
+
+describe('ConfirmAddCeiComponent', () => {
+ let component: ConfirmAddCeiComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ ConfirmAddCeiComponent ],
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ConfirmAddCeiComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.ts b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.ts
new file mode 100644
index 00000000..f9a1a620
--- /dev/null
+++ b/Mohem/src/app/eit/confirm-add-cei/confirm-add-cei.component.ts
@@ -0,0 +1,14 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-confirm-add-cei',
+ templateUrl: './confirm-add-cei.component.html',
+ styleUrls: ['./confirm-add-cei.component.scss'],
+})
+export class ConfirmAddCeiComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {}
+
+}
diff --git a/Mohem/src/app/hmg-common/services/connector/connector.service.ts b/Mohem/src/app/hmg-common/services/connector/connector.service.ts
index 62631565..70a9d157 100644
--- a/Mohem/src/app/hmg-common/services/connector/connector.service.ts
+++ b/Mohem/src/app/hmg-common/services/connector/connector.service.ts
@@ -27,8 +27,8 @@ export class ConnectorService {
public static retryTimes = 0;
public static timeOut = 120 * 1000;
- public static host = 'https://uat.hmgwebservices.com/';
- // public static host = 'https://hmgwebservices.com/';
+ // public static host = 'https://uat.hmgwebservices.com/';
+ public static host = 'https://hmgwebservices.com/';
constructor(public httpClient: HttpClient,
public cs: CommonService,