2016-01-21 13:07:50 +01:00
|
|
|
|
|
2017-04-12 17:33:49 +02:00
|
|
|
|
<form id="form-contact" class="form js-parsley" action="//formspree.io/{{ site.email.contact }}" method="POST" accept-charset="UTF-8">
|
2016-01-21 13:07:50 +01:00
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="form-control" type="text" id="name" name="name" required>
|
|
|
|
|
<label class="form-label" for="name">Your Name</label>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="form-control" type="email" id="email" name="_replyto" required>
|
|
|
|
|
<label class="form-label" for="email">Your Email</label>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="form-group">
|
|
|
|
|
<textarea class="form-control" id="comment" name="comment" rows="1" required></textarea>
|
|
|
|
|
<label class="form-label" for="comment">Your Message</label>
|
|
|
|
|
</p>
|
2017-04-13 14:22:57 +02:00
|
|
|
|
<p class="form-group text-dimmed mini">
|
|
|
|
|
Fields marked with an <span class="required">*</span> are required.
|
|
|
|
|
</p>
|
2016-01-21 13:07:50 +01:00
|
|
|
|
<p class="form-group">
|
|
|
|
|
<input class="btn btn-primary" type="submit" value="Send">
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="alert alert-success animation-slide-in-from-bottom hide">
|
|
|
|
|
<svg class="alert__icon icon icon-success">
|
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#icon-success"></use>
|
|
|
|
|
</svg>
|
|
|
|
|
<p>
|
|
|
|
|
<strong class="alert__title">Great to hear you’re interested!</strong>
|
2016-02-11 15:47:45 +01:00
|
|
|
|
We’ll get in touch soon.
|
2016-01-21 13:07:50 +01:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="alert alert-danger hide">
|
|
|
|
|
<svg class="alert__icon icon icon-fail">
|
|
|
|
|
<use xlink:href="/assets/img/sprite.svg#icon-fail"></use>
|
|
|
|
|
</svg>
|
|
|
|
|
<p>
|
|
|
|
|
<strong class="alert__title">Ops, there was an error</strong>
|
|
|
|
|
Would you mind trying again?
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2016-02-11 03:11:43 +01:00
|
|
|
|
|
|
|
|
|
<input type="hidden" name="_subject" value="New contact form submission" />
|
2017-07-27 11:37:33 +02:00
|
|
|
|
<input type="hidden" name="_cc" value="{{ site.email.contact_cc }}" />
|
2016-01-21 13:07:50 +01:00
|
|
|
|
</form>
|