-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (33 loc) · 1.65 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
alias: contact
title: Contact Us
description: Got any questions, comments or complaints? Get in touch with us today.
---
<h1 class="page-title uppercase">Contact Us</h1>
<p>Got any questions, comments or complaints? Get in touch with us by filling in the form below.</p>
<form class="container" id="contact-form" action="https://formspree.io/f/myyalkql" method="POST">
<div class="row form-group">
<div class="col-12 col-lg-6">
<label class="sr-only" for="contact-name">Full name</label>
<input class="form-control" type="text" id="contact-name" name="contact-name" placeholder="Full name*" required/>
</div>
<div class="col-12 mt-3 col-lg-6 mt-lg-0">
<label class="sr-only" for="_replyto">Email address</label>
<input class="form-control" type="email" id="contact-email" name="_replyto" placeholder="Email*" required/>
</div>
</div>
<div class="form-group">
<label class="sr-only" for="contact-subject">Subject</label>
<input class="form-control" type="text" id="contact-subject" name="contact-subject" placeholder="Subject" />
</div>
<div class="form-group">
<label class="sr-only" for="contact-message">Message</label>
<textarea class="form-control" id="contact-message" name="contact-message" placeholder="Message*" required></textarea>
</div>
<div class="row w-100 justify-content-center align-items-center">
<div class="col-12 col-md-auto">
<input type="submit" id="contact-submit" name="submit" value="Submit" />
</div>
</div>
</form>
<p class="fs-h3 text-center" id="contact-form-status"></p>