From a50a70199d5545a5d02f6bb424c8bf0db2432d6d Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 10 Jan 2024 10:08:25 -0500 Subject: [PATCH] Updated contact form --- .../components/contact/contact.component.html | 53 +++++++++++++++++++ .../components/contact/contact.component.ts | 2 +- src/app/views/home/home.component.html | 51 +----------------- src/app/views/home/home.component.ts | 6 +-- 4 files changed, 57 insertions(+), 55 deletions(-) diff --git a/src/app/components/contact/contact.component.html b/src/app/components/contact/contact.component.html index e69de29..1209cec 100644 --- a/src/app/components/contact/contact.component.html +++ b/src/app/components/contact/contact.component.html @@ -0,0 +1,53 @@ +
+
+
+
+ + Email + + +
+
+ + Subject + + General Inquiry + Castra Event + + +
+
+ + Message + + +
+
+
+ Send me a copy +
+
+ +
+
+
+
+
+
+
+
+
+
+

Robert Sacco

+

Legio XXX President

+
Portrays: Aquilifer Primus Marius Maximus
+ sacco.c.r@bell.net +
+
+

Tom Ross

+

Legio XXX Patronus (Patron)

+
Portrays: Titus Quartinius Saturnalus
+ tomlongwoods@gmail.com +
+
+
diff --git a/src/app/components/contact/contact.component.ts b/src/app/components/contact/contact.component.ts index 9424954..8f5803b 100644 --- a/src/app/components/contact/contact.component.ts +++ b/src/app/components/contact/contact.component.ts @@ -5,5 +5,5 @@ import {Component} from '@angular/core'; templateUrl: './contact.component.html' }) export class ContactComponent { - + contact: string = ''; } diff --git a/src/app/views/home/home.component.html b/src/app/views/home/home.component.html index 69e8a07..bfb9017 100644 --- a/src/app/views/home/home.component.html +++ b/src/app/views/home/home.component.html @@ -75,54 +75,7 @@
-

Contact

-
-
-
- - Email - - -
-
- - Subject - - General Inquiry - Castra Event - - -
-
- - Message - - -
-
-
- Send me a copy -
-
- -
-
-
- -
-
-

Robert Sacco

-

Legio XXX President

-
Portrays: Aquilifer Primus Marius Maximus
- sacco.c.r@bell.net -
-
-

Tom Ross

-

Legio XXX Patronus (Patron)

-
Portrays: Titus Quartinius Saturnalus
- tomlongwoods@gmail.com -
-
-
+

Contact

+
diff --git a/src/app/views/home/home.component.ts b/src/app/views/home/home.component.ts index be29c9b..0a67d13 100644 --- a/src/app/views/home/home.component.ts +++ b/src/app/views/home/home.component.ts @@ -1,12 +1,8 @@ import {Component} from '@angular/core'; -import {NAVIGATION} from '../../misc/navigation'; @Component({ selector: 'xxx-home', templateUrl: './home.component.html', styleUrls: ['./home.component.scss'] }) -export class HomeComponent { - contact: string = ''; - navigation = NAVIGATION; -} +export class HomeComponent { }