From f50b0485d40d57d3ef1bb5f0f4d0591dae18e808 Mon Sep 17 00:00:00 2001 From: Workshop Bot Date: Thu, 11 Jun 2026 12:49:19 +0000 Subject: [PATCH 1/2] Add working contact form --- css/site.css | 59 ++++++++++++++++++++++++++++++++++ src/content/pages/contact.html | 32 +++++++++++++++++- src/pages/contact.astro | 39 ++++++++++++++++++++++ 3 files changed, 129 insertions(+), 1 deletion(-) diff --git a/css/site.css b/css/site.css index a70b3690..7c271722 100644 --- a/css/site.css +++ b/css/site.css @@ -157,3 +157,62 @@ body.custom-background { background-color: #ffffff; } font-size: 21px; } } + +/* Contact page form. */ +.contact-form { + display: grid; + gap: 14px; + max-width: 620px; + margin: 22px 0 0; +} + +.contact-field label { + display: block; + margin-bottom: 5px; + color: #444444; + font-size: 13px; + font-weight: 700; +} + +.contact-field input, +.contact-field select, +.contact-field textarea { + box-sizing: border-box; + width: 100%; + margin: 0; +} + +.contact-field input, +.contact-field select { + min-height: 38px; +} + +.contact-field textarea { + min-height: 150px; + resize: vertical; +} + +.contact-field input:focus, +.contact-field select:focus, +.contact-field textarea:focus { + outline: 2px solid #bf4d28; + outline-offset: 2px; +} + +.contact-actions { + display: flex; + flex-wrap: wrap; + gap: 12px; + align-items: center; +} + +.contact-actions .button { + margin: 0; + cursor: pointer; +} + +.contact-form-status { + min-height: 1.4em; + margin: 0; + color: #5c5c56; +} diff --git a/src/content/pages/contact.html b/src/content/pages/contact.html index 5b0ba8fa..857ca1c4 100644 --- a/src/content/pages/contact.html +++ b/src/content/pages/contact.html @@ -7,7 +7,37 @@

19 North Great Georges St.
Dublin 1, Ireland

Feel free to email us any questions you may have or to book an appointment to hear our lecture series of the Divine Principle or to organize a religious event at our church center: info@unification.ie

+
+
+ + +
-

Email us

+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +

+
+
diff --git a/src/pages/contact.astro b/src/pages/contact.astro index d9720ee9..4c6bd421 100644 --- a/src/pages/contact.astro +++ b/src/pages/contact.astro @@ -11,4 +11,43 @@ import articleHtml from "../content/pages/contact.html?raw"; canonical="/contact.html" > + -- 2.49.1 From 3438494918ced7a72a24a8b2d1fe106fe099e1c8 Mon Sep 17 00:00:00 2001 From: Workshop Bot Date: Thu, 11 Jun 2026 12:54:44 +0000 Subject: [PATCH 2/2] Update contact email address --- archive-source/contact.html | 4 ++-- src/content/pages/contact.html | 4 ++-- src/pages/contact.astro | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/archive-source/contact.html b/archive-source/contact.html index 68d410c1..7f0abe9b 100644 --- a/archive-source/contact.html +++ b/archive-source/contact.html @@ -83,10 +83,10 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"

We’re conveniently located in Dublin City Centre, directly across from the James Joyce Center. Feel free to drop by anytime, since most days someone is around to offer you a cup of tea and a friendly chat about our beliefs.

Our address is:

19 North Great Georges St.
Dublin 1, Ireland

-

Feel free to email us any questions you may have or to book an appointment to hear our lecture series of the Divine Principle or to organize a religious event at our church center: info@unification.ie

+

Feel free to email us any questions you may have or to book an appointment to hear our lecture series of the Divine Principle or to organize a religious event at our church center: directors@familyfed.ie

-

Email us

+

Email us

diff --git a/src/content/pages/contact.html b/src/content/pages/contact.html index 857ca1c4..8716e87b 100644 --- a/src/content/pages/contact.html +++ b/src/content/pages/contact.html @@ -5,9 +5,9 @@

We’re conveniently located in Dublin City Centre, directly across from the James Joyce Center. Feel free to drop by anytime, since most days someone is around to offer you a cup of tea and a friendly chat about our beliefs.

Our address is:

19 North Great Georges St.
Dublin 1, Ireland

-

Feel free to email us any questions you may have or to book an appointment to hear our lecture series of the Divine Principle or to organize a religious event at our church center: info@unification.ie

+

Feel free to email us any questions you may have or to book an appointment to hear our lecture series of the Divine Principle or to organize a religious event at our church center: directors@familyfed.ie

-
+
diff --git a/src/pages/contact.astro b/src/pages/contact.astro index 4c6bd421..f01d5418 100644 --- a/src/pages/contact.astro +++ b/src/pages/contact.astro @@ -46,7 +46,7 @@ import articleHtml from "../content/pages/contact.html?raw"; status.textContent = "Opening your email app with the message ready to send."; } - window.location.href = `mailto:info@unification.ie?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`; + window.location.href = `mailto:directors@familyfed.ie?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`; }); })(); -- 2.49.1