forked from Sunyang730/LunchReactor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlunchtime.html
More file actions
85 lines (74 loc) · 3.62 KB
/
lunchtime.html
File metadata and controls
85 lines (74 loc) · 3.62 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
<html>
<head>
<title>LunchReactor</title>
<link rel="shortcut icon" type="image/x-icon" href="coffee.ico" />
<script src="http://momentjs.com/downloads/moment.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="js/jquery.leanModal.min.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.3.3.min.js"></script>
<script src="js/backend.js"></script>
<script src="js/lunchreactor.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Roboto+Slab">
<link href='http://fonts.googleapis.com/css?family=Lato:100,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="bg">
<video autoplay loop id="bgvid">
<source id="source" src="bg/coffee-cup-small.mp4" type="video/mp4">
</video>
</div>
<div id="middle">
<h1>Lunch Reactor</h1>
<h2 id="date">Monday, January 19, 2015</h2>
<div class="circle" id="frost"></div>
<div class="circle fleft" id="rsvp">
<p id="rsvp_text">
<span class="rsvp">RSVP</span>
<br>
<span id="time_left">3 hours left</span>
</p>
<p id="rsvp_success">✓</p>
</div>
<div class="circle count fright">
<p>
<span class="count">23</span>
</p>
</div>
<p id="new_user">
<a href="#modal" id="modaltrigger">Sign in</a> or <a href="#" id="create_account">create an account</a> in seconds.
</p>
<div class="signup" id="login" style="display:none;">
<div class="register" id="register">
<form class="info">
<input type="text" class="infoField" name="firstname" placeholder="First Name"><br>
<input type="text" class="infoField" name="lastname" placeholder="Last Name"><br>
<input type="text" class="infoField" name="email" placeholder="email"><br>
<div type="submit" class="submitInfo" value="Submit"></div>
</form>
</div>
</div>
<p id="greet"></p>
</div>
<div id="modal" style="display:none;">
<div id="register-modal" class="fleft">
<h3>Create an account</h3>
<form "registerform" name="registerform" method="post" action="lunchtime.html">
<input type="text" name="username" id="username" class="txtfield" tabindex="1" placeholder="username">
<input type="password" name="password" id="password" class="txtfield" tabindex="2" placeholder="password">
<div class="center"><input type="submit" name="registerbtn" id="registerbtn" class="flatbtn-blu hidemodal" value="Create Account" tabindex="3"></div>
</form>
</div>
<div id="login-modal" class="fright">
<h3>Sign in</h3>
<form id="loginform" name="loginform" method="post" action="lunchtime.html">
<input type="text" name="username" id="username" class="txtfield" tabindex="4" placeholder="username">
<input type="password" name="password" id="password" class="txtfield" tabindex="5" placeholder="password">
<div class="center"><input type="submit" name="loginbtn" id="loginbtn" class="flatbtn-blu hidemodal" value="Log In" tabindex="6"></div>
</form>
</div>
</div>
</body>
</html>