This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/contact.html.twig

40 lines
1.3 KiB
Twig
Raw Normal View History

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 %}
2018-10-06 07:41:31 +00:00
<div>
<p>To send me an email, complete the form below.</p>
</div>
2017-07-11 00:08:32 +00:00
2018-07-20 15:34:53 +00:00
<form name="contact" method="POST" action="/contact/thanks" data-netlify="true" netlify-honeypot="bot-field">
2018-10-06 07:41:31 +00:00
<div>
<label for="name" class="block mb-1">Name</label>
2018-10-11 11:58:38 +00:00
<input type="text" class="w-full p-2 mb-4 border border--grey" id="name" name="name" required />
2018-10-06 07:41:31 +00:00
</div>
<div>
<label for="email" class="block mb-1">Email</label>
2018-10-11 11:58:38 +00:00
<input type="email" class="w-full p-2 mb-4 border border--grey" id="email" name="email" required />
2018-10-06 07:41:31 +00:00
</div>
<div>
<label for="subject" class="block mb-1">Subject</label>
2018-10-11 11:58:38 +00:00
<input type="text" class="w-full p-2 mb-4 border border--grey" id="subject" name="subject" required />
2018-10-06 07:41:31 +00:00
</div>
<div>
<label for="message" class="block mb-1">Message</label>
2018-10-11 11:58:38 +00:00
<textarea id="message" class="w-full p-2 mb-4 border border--grey" rows="5" name="message" required></textarea>
2018-10-06 07:41:31 +00:00
</div>
<div>
<button class="button" type="submit">Send email</button>
</div>
<input type="hidden" name="_next" value="{{ site.url }}/contact/thanks" />
<input type="text" id="bot-field" class="hidden" />
2017-07-11 00:08:32 +00:00
</form>
{% endblock %}