-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
46 lines (41 loc) · 1.38 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
---
layout: base
relme: true
---
<div class="two-column-container">
<div class="left-column">
<h1>Contact Me</h1>
<p>
The best way to reach me is through email via the contact form here. You can also reach me through
<a href="https://www.linkedin.com/in/jonathan-browne/">LinkedIn</a>, but I don't usually
accept contact requests unless we've met beforehand.
</p>
<p>
Once you fill this out, I'll reply via email within a few days.
</p>
</div>
<div class="right-column">
<script async defer src="/assets/contact.js"></script>
<form id="contact-form" data-jbtoolsdomain="{{ site.jbtools }}">
<p>
<label for="contact-name">Your name:</label>
<br>
<input id="contact-name" type="text" name="name" required autocomplete="name">
</p>
<p>
<label for="contact-email">Your email:</label>
<br>
<input id="contact-email" type="email" name="email" required autocomplete="email">
</p>
<p>
<label for="contact-message">Your message:</label>
<br>
<textarea id="contact-message" name="message" required></textarea>
</p>
<p>
<button id="contact-submit" type="submit" disabled>Send</button>
<span id="contact-status">Loading form...</span>
</p>
</form>
</div>
</div>