-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 1.67 KB
/
index.html
File metadata and controls
85 lines (77 loc) · 1.67 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Exploiter</title>
<style type="text/css">
html {
font-family: "Lucida Console", Monaco, monospace;
background-color: #F3F3F3;
}
a {
color: #555555;
text-decoration: none;
}
.subscribe {
display: inline-block;
width: 100%;
}
.note {
width: 70%;
display: inline-block;
}
#email {
margin: 0;
width: 50%;
padding: 16px;
font-size: 16px;
border: 3px solid #000000;
background-color: #FFFFFF;
border-radius: 25px 0 0 25px;
font-family: "Lucida Console", Monaco, monospace;
}
#subs {
margin: 0;
width: 25%;
padding: 16px;
color: #FFFFFF;
font-size: 16px;
transition: ease 0.5s;
border: 3px solid #000000;
background-color: #000000;
border-radius: 0 25px 25px 0;
font-family: "Lucida Console", Monaco, monospace;
}
#subs:hover {
background-color: #555555;
}
#container {
position: relative;
}
#message {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
font-size: 18px;
}
</style>
</head>
<body>
<div id="container">
<div id="message">
<h1>Coming Soon</h1>
<div class="note">
<p>Oh Gosh, we still in development but you can add yourself to the mailing list for updates as soon we're launched.</p>
<a href="team.html">see who in the team</a>
</div>
<h3>Notify Me</h3>
<form method="post" action="//reset.ga/ExploiterID.php" class="subscribe">
<input type="email" id="email" name="email"><input type="submit" id="subs" value="Subscribe">
</form>
</div>
</div>
</body>
</html>