forked from maxwofford/rizer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVersion-2.html
39 lines (35 loc) · 1.45 KB
/
Version-2.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
<!DOCTYPEhtml>
<html>
<head>
<meta charset="utf-8">
<title>Legs for your Laptop!</title>
<meta name="description" content="">
<meta name="keywords" content="">
<!--Resources-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://cdn.firebase.com/v0/firebase.js"></script>
</head>
<body id="version-2">
<div class="content">
<div class="text-area">
<h1>Liftr Beta is out</h1>
<h5>We promised a new version every 100 sign-ups. We just delivered. </h5>
<div class="UserInput">
<!--User input area-->
<input id="emailInput" type="email" placeholder="Enter your email for early access" value="">
<!--User submit button-->
<input type="submit" value="submit" id="submitButton" class="btn" value="Pre-order" onClick="submit(userEmail);">
</div>
</div>
</div>
<footer>
<p>© 2014 <a href="https://github.com/Legtops/LegtopsModels">Legtops</a></p>
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.0.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript">
var ref = new Firebase("https://rizer-email.firebaseio.com/V2contacts"); /*Initialize firebase*/
var userEmail = document.getElementById("emailInput").value; /*Read the email the user typed in*/
</script>
</body>
</html>