2017-07-11 00:08:32 +00:00
|
|
|
---
|
|
|
|
title: Contact
|
2018-10-05 23:23:35 +00:00
|
|
|
layout: default
|
2017-07-11 00:08:32 +00:00
|
|
|
use: [posts]
|
|
|
|
---
|
|
|
|
{% block content %}
|
|
|
|
<p>To send me an email, complete the form below.</p>
|
|
|
|
|
2018-07-20 15:34:53 +00:00
|
|
|
<form name="contact" method="POST" action="/contact/thanks" data-netlify="true" netlify-honeypot="bot-field">
|
2017-11-09 22:44:30 +00:00
|
|
|
<label for="name" class="block mb-1">Name</label>
|
|
|
|
<input type="text"
|
|
|
|
class="w-full p-2 mb-4 border border--grey"
|
|
|
|
name="name"
|
|
|
|
required>
|
|
|
|
|
|
|
|
<label for="email" class="block mb-1">Email</label>
|
|
|
|
<input type="email"
|
|
|
|
class="w-full p-2 mb-4 border border--grey"
|
|
|
|
name="email"
|
|
|
|
required>
|
|
|
|
|
|
|
|
<label for="subject" class="block mb-1">Subject</label>
|
|
|
|
<input type="text"
|
|
|
|
class="w-full p-2 mb-4 border border--grey"
|
|
|
|
name="subject"
|
|
|
|
required>
|
|
|
|
|
|
|
|
<label for="message" class="block mb-1">Message</label>
|
|
|
|
<textarea name="message"
|
|
|
|
class="w-full p-2 mb-4 border border--grey"
|
|
|
|
rows="5"
|
|
|
|
required>
|
|
|
|
</textarea>
|
2017-09-04 16:55:53 +00:00
|
|
|
|
2017-10-09 18:15:57 +00:00
|
|
|
<button class="button" type="submit">
|
2017-09-04 16:55:53 +00:00
|
|
|
Send email
|
|
|
|
</button>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
<input type="hidden"
|
|
|
|
name="_next"
|
|
|
|
value="{{ site.url }}/contact/thanks" />
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-07-03 18:12:00 +00:00
|
|
|
<input type="text" name="bot-field" class="hidden" />
|
2017-07-11 00:08:32 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body_classes 'page--contact' %}
|