-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.46 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero">
<h3>Coming Soon !</h3>
<h1>OurBrand New <br>Websites is on its way</h1>
<p>Subscribe for more details</p>
<form name="submit-to-google-sheet" action="
">
<input type="email" name = "Email" placeholder="Your Email Id" required>
<button type="submit"><img src="email-subs-img/send-icon.png" width = "30px"alt=""></button>
</form>
<span id = "msg"></span>
</div>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbxZ1roNGTRTch27qf99Ll3wiHBxsQtOHXwvS1H8wY2a6f9S6iRj2duLyq3RoNIL8Q5xTA/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>