-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (47 loc) · 2.43 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Website coming soon</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<script type="text/javascript" id="cookiebanner"
src="https://cdnjs.cloudflare.com/ajax/libs/cookie-banner/1.2.2/cookiebanner.min.js"></script>
<script src="js/functions.js"> </script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700%7CPoppins:400,500" rel="stylesheet">
<link href="css/popup.css" rel="stylesheet">
<link href="css/jquery.classycountdown.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
</head>
<body onload="selectBackground()">
<div class="form-popup" id="emailform">
<form class="form-container" onsubmit="enterNewsletter()">
<h1>Notify me When This Webpage is available</h1>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<button type="submit" class="btn">Submit</button>
<button type="button" class="btn cancel" onclick="closeForm()">Close</button>
</form>
</div>
<div class="main-area center-text" id="main-area">
<div class="display-table">
<div class="display-table-cell">
<h1 class="title font-white"><b>Coming Soon</b></h1>
<p class="desc font-white">Our website is currently undergoing scheduled maintenance. We Should be back shortly. Thank you for your patience.</p>
<!-- <button class="notify-btn" type="button" onclick="clickForm()"><b>NOTIFY ME</b></button> -->
<ul class="social-btn font-white">
<li><a href="https://github.com/ScarVite" target="_blank">Github</a></li>
<li><a href="https://twitter.com/scarvite" target="_blank">Twitter</a></li>
<li><a href="https://discord.gg/XKVX2Uy" target="_blank">Discord</a></li>
<li><a href="https://keybase.io/scarvite" target="_blank">Keybase</a></li>
</ul>
<!-- social-btn -->
</div>
<!-- display-table -->
</div>
<!-- display-table-cell -->
</div>
<!-- main-area -->
</body>
</html>