-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.html
50 lines (47 loc) · 1.5 KB
/
html.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML x Google Sheets</title>
</head>
<body>
<form method="post" id="google-form">
<!-- Input Field name must match with google sheet Header -->
<input type="text" name="First Name" placeholder="First Name" />
<input type="text" name="Second Name" placeholder="Second Name" />
<input
name="Age"
type="number"
placeholder="Age"
placeholder="Your Age"
/>
<button type="submit" value="send">Submit</button>
</form>
<script>
// Get Form by its id
const form = document.getElementById("google-form");
// App Script url
const googleAppScriptUrl = "<Enter your App Script Deployed Url>";
// Fuction to send data to google form when submit button is clicked
form.addEventListener("submit", (e) => {
e.preventDefault();
try {
fetch(googleAppScriptUrl, {
method: "POST",
mode: "no-cors",
body: new FormData(form),
}).then(() => {
// Do someting After successfull submission
console.log("success");
alert("Successfully Submitted");
});
} catch (error) {
// Do something for the error case
console.log(error);
}
});
</script>
</body>
</html>