-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (56 loc) · 2.25 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
54
55
56
57
58
59
60
61
62
63
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-133180962-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-133180962-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./styles/style.css">
<title>Cynthesize | Coming Soon</title>
<script>window.location = 'https://cynthesize.co/?tech';</script>
</head>
<body>
<header class="header">
<img class="header-banner-logo" src="./assets/cynthesize-banner-logo.png" alt="Cynthesize Logo" srcset="">
</header>
<main class="main">
<div class="container" style="margin-top:16rem;">
<img class="coming-soon-image" src="./assets/coming-soon.png" alt="Coming Soon" />
<h1 class="coming-soon-slogan">
Cynthesizing <span class="blue-text">cynthesize.tech</span>!
</h1>
<h3 class="coming-soon-message">
Website launching soon.
</h3>
<hr />
<form class="input-form" action="" style="margin-top:8rem;">
<h3 class="coming-soon-message">Drop in your email here to stay updated: </h3>
<input class="input-email" type="email" name="email" id="email" placeholder="[email protected]" />
<button class="input-submit" id="submit">></button>
</form>
</div>
</main>
</body>
<script src="styles/jquery.min.js"></script>
<script src="styles/airtable.browser.js"></script>
<script>
var Airtable = require('airtable');
var base = new Airtable({apiKey: 'keyHpbXYGXQ6zuboP'}).base('appIfQfVEdPyChC0j');
$("#submit").click(function(e){
e.preventDefault();
var email=document.getElementById("email").value;
base('apply').create({
"Email" : email
}, function(err, record) {
if (err) { console.error(err); return; }
document.getElementById("email").value="";
});
});
</script>
</html>