• contacts
kavindu.sannasgala@gmail.com
kavindudila808@gmail.com
+94 76 603 7623
+94 71 574 3573
1
const button = document.querySelector("#sendBtn");
2
3
const message = {
4
name: "",
5
email: "",
6
message: "",
7
date: "Thu 21 Apr"
8
}
9
10
fetch('/api/contact', {
11
method: 'POST',
12
headers: {
13
'Content-Type': 'application/json'
14
},
15
body: JSON.stringify(message)
16
})