forked from cory321/netflixparty-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (40 loc) · 1.4 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Netflix Party</title>
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="popup.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<div class="no-error">
<div class="disconnected">
<h2>Create a Netflix Party</h2>
<p>
<label><input type="checkbox" id="control-lock"> Only I have control</label>
</p>
<p>
<button id="create-session" type="button">Start the party</button>
</p>
</div>
<div class="connected hidden">
<p>Share the URL below so others can join the party. The recipient(s) should navigate to this URL and <strong>then click on the Netflix Party icon</strong> to join.</p>
<input id="share-url" type="text" readonly="true" autocomplete="off" autofocus />
<p class="copy-val">
<small><a href="#" id="copy-btn">Copy URL</a></small>
</p>
<p>
<label><input type="checkbox" id="show-chat"> Show chat</label>
</p>
<p>
<button id="leave-session" type="button">Disconnect</button>
</p>
</div>
</div>
<div class="some-error hidden">
<p id="error-msg" class="error"></p>
<p><button id="close-error" type="button">Dismiss</button></p>
</div>
</body>
</html>