Skip to content

Commit f99e402

Browse files
authored
Merge pull request #9 from HarryEMartland/basicContactUsPage
adds basic contact page
2 parents c5b869a + bce73b3 commit f99e402

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

contact.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Contact
3+
layout: default
4+
---
5+
6+
<h1>{{page.title}}</h1>
7+
8+
<p>
9+
10+
</p>
11+
12+
<p>
13+
If you have any questions about joining us at code with you can chat to us now through Facebook by clicking the below button.
14+
You can chat to us without a facebook account by clicking on the guest option.
15+
</p>
16+
17+
<p>
18+
<button class="btn btn-primary" id="chat-now">Chat Now!</button>
19+
</p>
20+
21+
<p>
22+
We are also available over email at <a href="mail:codewithgroup@gmail.com">codewithgroup@gmail.com</a>.
23+
</p>
24+
25+
<script>
26+
let chatButton = document.getElementById('chat-now');
27+
chatButton.onclick = function (){
28+
FB.CustomerChat.show(true)
29+
}
30+
</script>

0 commit comments

Comments
 (0)