-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (51 loc) · 1.58 KB
/
index.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
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Email Subscription Form</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="hero">
<h3>Coming Soon!</h3>
<h1>
OurBrand New <br />
Website Is On It's Way
</h1>
<p>Subscribe for more details</p>
<form action="" name="submit-to-google-sheet">
<input
type="email"
name="Email"
id=""
placeholder="Your Email Id"
required
/>
<button type="submit">
<img width="30px" src="image/send-icon.png" alt="send" />
</button>
</form>
<span id="msg"></span>
</div>
<script>
const scriptURL =
'https://script.google.com/macros/s/AKfycbxkw_zpkbW7TkpGIkTrU-jZyJaGnwcKaakeU48SIrCizEJtYhUvUpFClZcexnRLmROoww/exec';
const form = document.forms['submit-to-google-sheet'];
const msg = document.getElementById('msg');
form.addEventListener('submit', (e) => {
e.preventDefault();
fetch(scriptURL, { method: 'POST', body: new FormData(form) })
.then((response) => {
msg.innerHTML = 'Thank You For Subscribing!';
setTimeout(function () {
msg.innerHTML = '';
}, 5000);
form.reset();
})
.catch((error) => console.error('Error!', error.message));
});
</script>
</body>
</html>