-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
62 lines (55 loc) · 2.09 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
title: Contact
excerpt: "A blog about using the Ruby on Rails web application framework to get stuff done as a web developer. New content a few times a week."
---
<p>
If you've got a question or comment about something
you read here, please use the form below to send me an email. Please fill in
all the fields—I just need it to be able to reply, not to sell or market.
I do my best to reply in a reasonable amount of time, but please
understand that it can sometimes take me a little while to get back to you.
</p>
<p>
If you have a question about something from
<em>Everyday Rails Testing with RSpec</em>, please direct it to the
<a href="https://github.com/everydayrails/">GitHub issues page for that project</a>.
</p>
<p>
Heads up, I will probably not respond to the following:
</p>
<ol>
<li>
Offers to translate my book: I'm flattered, but I am not interested in
adding translations at this time.
</li>
<li>
Requests to write guest posts on Everyday Rails: Sorry, this site is a
purely personal venture.
</li>
<li>
Requests to post to your company or personal project: If it's interesting
to me, and solves a need I have, I may write something up about it.
</li>
<li>
Offers to improve my SEO, or write any software for hire.
</li>
</ol>
<p>
Thanks!
</p>
<form name="contact" method="POST" data-netlify="true" action="/thanks.html">
<div>
<label for="name" class="block font-semibold mt-5">Your name</label>
<input type="text" name="name" class="border rounded w-full p-1" />
</div>
<div>
<label for="email" class="block font-semibold mt-5">Your email address</label>
<input type="email" name="email" class="border rounded w-full p-1" />
</div>
<div>
<label for="message" class="block font-semibold mt-5">Message</label>
<textarea name="message" rows="6" class="border rounded w-full p-1 leading-tight"></textarea>
</div>
<button type="submit" class="mt-5 bg-red-900 hover:bg-gray-400 hover:text-gray-800 text-sm no-underline font-semibold px-3 py-2 text-white rounded-lg">Send message</button>
</form>