diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index d0ab781..6094a63 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -21,10 +21,15 @@ const routes: Routes = [
{
path: 'register',
loadChildren: () => import('./extpages/register/register.module').then(m => m.RegisterPageModule)
+ },
+ {
+ path: 'dash',
+ loadChildren: () => import('./pages/dash/dash.module').then(m => m.DashPageModule)
}
+
];
@NgModule({
imports: [
diff --git a/src/app/extpages/login/login.page.html b/src/app/extpages/login/login.page.html
index d09fefc..a1c9d89 100644
--- a/src/app/extpages/login/login.page.html
+++ b/src/app/extpages/login/login.page.html
@@ -63,7 +63,7 @@
-
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+ Card Title
+ Card Subtitle
+
+
+
+ Here's a small text description for the card content. Nothing more, nothing less.
+
+
+
+
+
+
+ Card Title
+ Card Subtitle
+
+
+
+ Here's a small text description for the card content. Nothing more, nothing less.
+
+
+
+
+
+
+
+
+ Card Title
+ Card Subtitle
+
+
+
+ Here's a small text description for the card content. Nothing more, nothing less.
+
+
+
+
+
+
+ Card Title
+ Card Subtitle
+
+
+
+ Here's a small text description for the card content. Nothing more, nothing less.
+
+
+
+
+
+ 1
+
+
+
+
+
+
diff --git a/src/app/pages/dash/dash.page.scss b/src/app/pages/dash/dash.page.scss
new file mode 100644
index 0000000..6b8f8c1
--- /dev/null
+++ b/src/app/pages/dash/dash.page.scss
@@ -0,0 +1,26 @@
+.top-flex{
+ background-color: #fdf9fc;
+ display: flex;
+ .acc-name{
+ font-weight: bolder;
+ font-size: 22px;
+ padding: 10px 0px 0px 10px;
+ }
+}
+
+.card-block{
+ margin: 0px;
+ //background-color: yellow;
+ .card-row{
+ margin: 0px;
+ padding: 0px;
+ .card-col{
+ // background-color: red;
+ padding: 0px;
+ .card-part{
+ padding: 0px;
+ margin: 10px;
+ }
+ }
+ }
+}
diff --git a/src/app/pages/dash/dash.page.spec.ts b/src/app/pages/dash/dash.page.spec.ts
new file mode 100644
index 0000000..f5161d8
--- /dev/null
+++ b/src/app/pages/dash/dash.page.spec.ts
@@ -0,0 +1,17 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { DashPage } from './dash.page';
+
+describe('DashPage', () => {
+ let component: DashPage;
+ let fixture: ComponentFixture
;
+
+ beforeEach(async(() => {
+ fixture = TestBed.createComponent(DashPage);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ }));
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/pages/dash/dash.page.ts b/src/app/pages/dash/dash.page.ts
new file mode 100644
index 0000000..1f8da6d
--- /dev/null
+++ b/src/app/pages/dash/dash.page.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-dash',
+ templateUrl: './dash.page.html',
+ styleUrls: ['./dash.page.scss'],
+})
+export class DashPage implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}