aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/home
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/ClientApp/src/app/home')
-rw-r--r--Timeline/ClientApp/src/app/home/home.component.css49
-rw-r--r--Timeline/ClientApp/src/app/home/home.component.html3
-rw-r--r--Timeline/ClientApp/src/app/home/home.component.spec.ts26
-rw-r--r--Timeline/ClientApp/src/app/home/home.component.ts10
-rw-r--r--Timeline/ClientApp/src/app/home/home.module.ts17
5 files changed, 0 insertions, 105 deletions
diff --git a/Timeline/ClientApp/src/app/home/home.component.css b/Timeline/ClientApp/src/app/home/home.component.css
deleted file mode 100644
index 76297a9e..00000000
--- a/Timeline/ClientApp/src/app/home/home.component.css
+++ /dev/null
@@ -1,49 +0,0 @@
-p {
- font-size: 2rem;
- margin: 0;
-}
-
-.bold {
- font-weight: 600;
-}
-
-#loginBox {
- display: inline-grid;
- grid-template: "username-label username-input" auto
- "password-label password-input" auto
- "login-button login-button" auto
- "message message" auto
- / max-content max-content;
- align-items: center;
- padding: 10px;
- border: solid black 1px;
-}
-
-#usernameLabel {
- grid-area: username-label;
-}
-
-#usernameInput {
- grid-area: username-input;
- margin: 2px;
-}
-
-#passwordLabel {
- grid-area: password-label;
-}
-
-#passwordInput {
- grid-area: password-input;
- margin: 2px;
-}
-
-#loginButton {
- grid-area: login-button;
- justify-self: end;
-}
-
-#loginMessage {
- grid-area: message;
- justify-self: end;
- color: red;
-}
diff --git a/Timeline/ClientApp/src/app/home/home.component.html b/Timeline/ClientApp/src/app/home/home.component.html
deleted file mode 100644
index 28ab3039..00000000
--- a/Timeline/ClientApp/src/app/home/home.component.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<h2 class="mat-h2">
- This page is under <span class="bold">construction</span>!
-</h2>
diff --git a/Timeline/ClientApp/src/app/home/home.component.spec.ts b/Timeline/ClientApp/src/app/home/home.component.spec.ts
deleted file mode 100644
index 74bedd08..00000000
--- a/Timeline/ClientApp/src/app/home/home.component.spec.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { HomeComponent } from './home.component';
-
-
-describe('HomeComponent', () => {
- let component: HomeComponent;
- let fixture: ComponentFixture<HomeComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [HomeComponent],
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(HomeComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/Timeline/ClientApp/src/app/home/home.component.ts b/Timeline/ClientApp/src/app/home/home.component.ts
deleted file mode 100644
index 0cb0d0f5..00000000
--- a/Timeline/ClientApp/src/app/home/home.component.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Component } from '@angular/core';
-
-@Component({
- selector: 'app-home',
- templateUrl: './home.component.html',
- styleUrls: ['./home.component.css']
-})
-export class HomeComponent {
-
-}
diff --git a/Timeline/ClientApp/src/app/home/home.module.ts b/Timeline/ClientApp/src/app/home/home.module.ts
deleted file mode 100644
index 98456238..00000000
--- a/Timeline/ClientApp/src/app/home/home.module.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
-import { RouterModule } from '@angular/router';
-
-import { HomeComponent } from './home.component';
-
-@NgModule({
- declarations: [HomeComponent],
- imports: [
- CommonModule,
- RouterModule.forChild([
- { path: 'home', component: HomeComponent }
- ])
- ],
- exports: [RouterModule]
-})
-export class HomeModule { }