-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (152 loc) · 5.04 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="This page is getting ready for launch! Check back soon. Launchpage.xyz is proudly powered by The Codeero Group for newly registerd websites, before content is available.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Launching Soon | This page will be here shortly</title>
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicons/favicon-16x16.png">
<link rel="manifest" href="/img/favicons/site.webmanifest">
<link rel="shortcut icon" href="/img/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-config" content="/img/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<style type="text/css">
:root {
--app-height: 100%;
}
html,
body {
background-color: #F7F9FA;
font-family: 'Montserrat', sans-serif;
width: 100vw;
height: 100vh;
height: var(--app-height);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.winniethepooh {
opacity: 0;
position: absolute;
top: 0;
left: 0;
height: 0;
width: 0;
z-index: -1;
}
.responsive {
width: 100%;
height: auto;
}
.w-80 {
width: 80%;
max-width: 500px;
}
.title {
margin-top: 60px;
margin-bottom: 30px;
color: #212C3A;
font-weight: 700;
letter-spacing: 0.5px;
}
input {
padding: 10px;
padding-left: 15px;
border: none;
font-weight: 500;
color: #B9B9B9;
font-size: 16px;
outline: none;
background: none;
letter-spacing: 0.5px;
flex-grow: 2;
font-family: 'Montserrat', sans-serif;
}
.mt-50 {
margin-top: 50px;
}
.emailinput {
border: 2px solid #212C3A;
width: 100%;
border-radius: 50px;
display: flex;
justify-content: space-between;
background-color: white;
}
button {
background-color: #31536F;
width: 35px;
height: 35px;
border-radius: 50%;
border: none;
color: white;
align-self: center;
margin-right: 3px;
display: flex;
}
.center {
margin: auto;
}
.powered-by {
font-size: 0.7rem;
text-align: center;
position: absolute;
bottom: 0px;
}
.powered-by a {
color: #31536F;
text-decoration: none;
}
@media (min-width: 481px) {
.powered-by {
align-self: end;
margin-right: 10px;
}
}
</style>
<script defer data-domain="launchpage.xyz" src="https://analytics.codeero.com/js/plausible.manual.js"></script>
<script defer data-domain="launchpage.xyz" src="https://launchpage.apps.codeero.com/launchpage_analytics.js"></script>
<script>
window.plausible = window.plausible || function() {
(window.plausible.q = window.plausible.q || []).push(arguments)
}
</script>
<script type="text/javascript">
let url = window.location.hostname;
let canon = window.location.href + '?utm_source=' + url;
plausible('pageview', { u: window.location.href + '?utm_source=' + url });
</script>
</head>
<body>
<img src="img/launch.svg" class="responsive w-80">
<h1 class="title">Launching Soon</h1>
<form class="email" id='form' onsubmit="submitForm()">
<p class="winniethepooh">
<label for="message">Don’t fill this out if you can read this: </label><input name="message" id="message" autocomplete="off" />
</p>
<div class="emailinput">
<input type="email" name="email" placeholder="Email me when it's ready" id="email" required="">
<button type="submit"><img class="responsive center" src="img/plane.svg"></button>
</div>
</form>
<div class="powered-by">
<p><a href="https://launchpage.xyz/signup">launchpage.xyz</a> is proudly powered by <a href="https://www.codeero.com?ref=launchpage" id="backlink">The Codeero Group</a></p>
</div>
<script>
const appHeight = () => {
const doc = document.documentElement
doc.style.setProperty('--app-height', `${window.innerHeight}px`)
}
window.addEventListener('resize', appHeight)
appHeight()
let backlink = document.getElementById('backlink')
backlink.href = backlink.href + '&utm_campaign=' + window.location.href
</script>
</body>
</html>