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

48 lines
1.4 KiB
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
---
title: Contact
layout: page
use: [posts]
---
{% block content %}
<p>To send me an email, complete the form below.</p>
2018-07-03 18:12:00 +00:00
<form 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' %}