-
Notifications
You must be signed in to change notification settings - Fork 12
/
contact.html
52 lines (51 loc) · 1.52 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
---
description: Contact Bob Pony
layout: default
permalink: /contact/
title: Contact
---
<section class="hero is-link is-bold">
<div class="hero-body container has-text-centered">
<p class="title">
Have something to say?
</p>
</div>
</section>
{% include nojs.html %}
<div class="container">
<br />
<div class="box">
<form
action="https://formspree.io/f/xjvllvwb"
method="POST"
>
<div class="field">
<p class="control has-icons-left has-icons-right">
<input class="input is-rounded" type="email" name="email" placeholder="Email">
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
</p>
</div>
<div class="field">
<p class="control has-icons-left has-icons-right">
<input class="input is-rounded" name="message" placeholder="Message" autocomplete="off">
<span class="icon is-small is-left">
<i class="fas fa-envelope"></i>
</span>
</p>
</div>
<div class="g-recaptcha" data-sitekey="6LfechcUAAAAAKoMsJezng5Hf9Cm9i4fMGmRirO2" data-callback="callback"></div>
<noscript><p>To send your message, please enable JavaScript!</p></noscript>
<br />
<button id="submit-button" class="button is-info is-rounded" type="submit" disabled>Send your message</button>
</form>
</div>
</div>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script type="text/javascript">
function callback() {
const submitButton = document.getElementById("submit-button");
submitButton.removeAttribute("disabled");
}
</script>