Updates contact form
Torey Heinz
committed Apr 19, 2020
commit 7405b1cbfc43b5d6054dba7a9c92b3b09f750cda
Showing 2
changed files with
26 additions
and 23 deletions
content/pages/contact.md
+7
-7
| @@ | @@ -3,17 +3,17 @@ title: Contact |
| heading: Contacting Anchor Rock Foundation | |
| published: true | |
| --- | |
| - | **Address** |
| - | Anchor Rock Foundation Inc.<br /> |
| - | 11555 Crossings Court, Suite 110<br /> |
| - | Holland, MI 49424. |
| + | <div class="has-text-centered"> |
| - | **Phone** |
| + | **Anchor Rock Foundation Inc.**<br /> |
| + | 11555 Crossings Court, Suite 110<br /> |
| + | Holland, MI 49424 |
| - | (616) 600-4501 |
| + | **(616) 600-4501** |
| + | **<ContactUs@AnchorRockFoundation.org>** |
| - | Please feel free to fill out the form below or email us at <ContactUs@anchorrockfoundation.org> |
| + | </div> |
| <ContactForm /> | |
src/components/ContactForm.vue
+19
-16
| @@ | @@ -1,21 +1,24 @@ |
| <template lang="pug"> | |
| - | form(name="ARF Contact" method="POST" action="https://formbucket.com/f/buk_fksDaZZVJ6fK6GDAIMJzoRgw") |
| - | div.field |
| - | label.label Name |
| - | div.control |
| - | input.input(name="name" type="text" placeholder="Name") |
| + | div.section.mb-2 |
| + | h3.title Contact Form |
| + | p.subtitle.is-6.mb-1 Please feel free to fill out the form below or email us at <a href="contactus@anchorrockfoundation.org">ContactUs@AnchorRockFoundation.org'</a> |
| + | form(name="ARF Contact" method="POST" action="https://formbucket.com/f/buk_fksDaZZVJ6fK6GDAIMJzoRgw") |
| + | div.field |
| + | label.label Name |
| + | div.control |
| + | input.input(name="name" type="text" placeholder="Name") |
| - | div.field |
| - | label.label Email |
| - | div.control |
| - | input.input(name="email" type="email" placeholder="Email") |
| + | div.field |
| + | label.label Email |
| + | div.control |
| + | input.input(name="email" type="email" placeholder="Email") |
| - | div.field |
| - | label.label Message |
| - | div.control |
| - | textarea.textarea(name="Message" placeholder="Message") |
| + | div.field |
| + | label.label Message |
| + | div.control |
| + | textarea.textarea(name="Message" placeholder="Message") |
| - | div.field |
| - | div.control |
| - | button(type="submit").button Send |
| + | div.field |
| + | div.control |
| + | button(type="submit").button Send |
| </template> | |