-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtos.html
More file actions
76 lines (67 loc) · 2.73 KB
/
tos.html
File metadata and controls
76 lines (67 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title id="pageTitle">WatchTogether</title>
</head>
<body>
<!-- Navbar -->
<div id="logo">
<img src="images/logo-noglow.png" alt="WatchTogether Logo"/>
</div>
<ul id="navbar">
<li class="navItem"><a href="" id="nav_home">Home</a></li>
<li class="navItem"><a href="" id="nav_create_room">Create Room</a></li>
<li class="navItem"><a href="" id="nav_join_room">Join Room</a></li>
<li class="navItem"><a href="" id="nav_browse">Browse</a></li>
<div id="nav_account">
<li class="navItem" style="float:right"><a href="" id="nav_register">Register</a></li>
<li class="navItem" style="float:right"><a href="#login_modal" rel="modal:open" id="nav_login">Login</a></li>
</div>
</ul>
<!-- Content -->
<div id="pageContent">
</div>
<!--End of Content -->
</body>
<!-- Footer -->
<footer>
<div id="footer_default">
<div class="footer_items">
<a href="tos.html">Terms of Service</a>
</div>
<div class="footer_items">
<div id="contact">
<span id="newsletter_signup">Newsletter Sign-up</span><br/><br/>
<input type="email" placeholder="E-mail Address" id="contact_email" /><br/><br/>
<input type="button" value="Sign-up" id="contact_submit" />
</div>
</div>
<div class="footer_items"></div>
</div>
</footer>
<!-- References -->
<link href="css/watch.css" rel="stylesheet" />
<link href="css/join_room.css" rel="stylesheet" />
<link href="css/video-js.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/main.js"></script>
<!-- jQuery Modal Plugin -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<!-- Modal content -->
<div id="login_modal" class="modal">
<div id="login_form">
<div id="login_msg_area"></div>
<form>
<p><label for="login_username">Username</label><br/>
<input type="text" id="login_username" placeholder="Username" value="" autocomplete="username"/></p>
<p><label for="login_password">Password</label><br/>
<input type="password" id="login_password" placeholder="Password" value="" autocomplete="password"/> <br/></p>
<p><input type="button" id="login_submit" value="Login" /></p>
<p><input type="button" id="login_register" class="button_warning" value="Register" /></p>
</form>
</div>
</div>
</html>