Merge pull request 'Add working contact form' (#4) from codex/contact-form into main
Some checks are pending
/ deploy (push) Waiting to run
Some checks are pending
/ deploy (push) Waiting to run
Reviewed-on: #4
This commit is contained in:
commit
f0efbb9575
4 changed files with 132 additions and 4 deletions
|
|
@ -5,9 +5,39 @@
|
|||
<p>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.</p>
|
||||
<p>Our address is:</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:directors@familyfed.ie" method="post" enctype="text/plain">
|
||||
<div class="contact-field">
|
||||
<label for="contact-name">Name</label>
|
||||
<input id="contact-name" name="name" type="text" autocomplete="name" required />
|
||||
</div>
|
||||
|
||||
<p><a class="button" href="mailto:info@unification.ie">Email us</a></p>
|
||||
<div class="contact-field">
|
||||
<label for="contact-email">Email</label>
|
||||
<input id="contact-email" name="email" type="email" autocomplete="email" required />
|
||||
</div>
|
||||
|
||||
<div class="contact-field">
|
||||
<label for="contact-topic">Topic</label>
|
||||
<select id="contact-topic" name="topic" required>
|
||||
<option value="">Choose a topic</option>
|
||||
<option value="General enquiry">General enquiry</option>
|
||||
<option value="Divine Principle lecture series">Divine Principle lecture series</option>
|
||||
<option value="Sunday service">Sunday service</option>
|
||||
<option value="Event booking">Event booking</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="contact-field">
|
||||
<label for="contact-message">Message</label>
|
||||
<textarea id="contact-message" name="message" rows="7" required></textarea>
|
||||
</div>
|
||||
|
||||
<div class="contact-actions">
|
||||
<button class="button" type="submit">Send message</button>
|
||||
<p id="contact-form-status" class="contact-form-status" aria-live="polite"></p>
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- .entry-content -->
|
||||
</div><!-- #post-## -->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue