-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.34 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.34 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
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website coming soon</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero">
<h3>Launching Soon!</h3>
<h1>Our Website <br> Is On The Way</h1>
<h4>Subscribe below to recieve updates.</h4>
<form name="submit-to-google-sheet">
<input type="email" name="Email" placeholder="Enter your email" required>
<button type="submit"><img src="images/mail.png" width="40px"></button>
</form>
<span id="msg">
</span>
</div>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbyy4XWHCFuRw8biek--kH6ae_rJhVCS9BowocAtLKdrrjiNH6gC6Euj5pZXTKy3gj0uBA/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! We'll keep you updated.";
setTimeout(() => {
msg.innerHTML = "";
}, 5000);
form.reset();
})
.catch(error => console.error('Error!', error.message))
})
</script>
</body>
</html>