Add working contact form #4

Merged
konradkunkel8 merged 2 commits from codex/contact-form into main 2026-06-11 12:59:07 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 3438494918 - Show all commits

View file

@ -83,10 +83,10 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
<p>We&#8217;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.</p> <p>We&#8217;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.</p>
<p>Our address is:</p> <p>Our address is:</p>
<p><strong>19 North Great Georges St.</strong><br /><strong> Dublin 1, Ireland</strong></p> <p><strong>19 North Great Georges St.</strong><br /><strong> Dublin 1, Ireland</strong></p>
<p>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: <a href="mailto:info@unification.ie">info@unification.ie</a></p> <p>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: <a href="mailto:directors@familyfed.ie">directors@familyfed.ie</a></p>
<p><a class="button" href="mailto:info@unification.ie">Email us</a></p> <p><a class="button" href="mailto:directors@familyfed.ie">Email us</a></p>
</div><!-- .entry-content --> </div><!-- .entry-content -->
</div><!-- #post-## --> </div><!-- #post-## -->

View file

@ -5,9 +5,9 @@
<p>We&#8217;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.</p> <p>We&#8217;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.</p>
<p>Our address is:</p> <p>Our address is:</p>
<p><strong>19 North Great Georges St.</strong><br /><strong> Dublin 1, Ireland</strong></p> <p><strong>19 North Great Georges St.</strong><br /><strong> Dublin 1, Ireland</strong></p>
<p>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: <a href="mailto:info@unification.ie">info@unification.ie</a></p> <p>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: <a href="mailto:directors@familyfed.ie">directors@familyfed.ie</a></p>
<form id="contact-form" class="contact-form" action="mailto:info@unification.ie" method="post" enctype="text/plain"> <form id="contact-form" class="contact-form" action="mailto:directors@familyfed.ie" method="post" enctype="text/plain">
<div class="contact-field"> <div class="contact-field">
<label for="contact-name">Name</label> <label for="contact-name">Name</label>
<input id="contact-name" name="name" type="text" autocomplete="name" required /> <input id="contact-name" name="name" type="text" autocomplete="name" required />

View file

@ -46,7 +46,7 @@ import articleHtml from "../content/pages/contact.html?raw";
status.textContent = "Opening your email app with the message ready to send."; 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)}`;
}); });
})(); })();
</script> </script>