-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (61 loc) · 3.7 KB
/
index.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
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
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml"
xmlns:og="https://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Play'em</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta property="og:title" content="Play'em"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://adrienjoly.com/playem/"/>
<meta property="og:image" content="https://adrienjoly.com/playem/ui-default/img/playem.png"/>
<meta property="og:description" content="Play'em plays videos that your friends shared on facebook, without having to browse, just like TV."/>
<meta property="fb:admins" content="510739408"/>
<link rel="icon" href="favicon.png" type="image/png" />
<link rel="stylesheet" href="common.css" type='text/css' />
<script src="js/jquery-1.5.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/swfobject.js" type="text/javascript" charset="utf-8"></script>
<script src="js/common.js?1" type="text/javascript" charset="utf-8"></script>
</head>
<body class="init">
<div id="fb-root"></div>
<div id="loader"></div>
<div class="back backimg"> </div>
<div class="back gradient">
<img id="logo" src="ui-default/img/playem.png" alt="Play'em"/>
</div>
<div id="socialButtons">
<iframe src="https://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com/useplayem&layout=button_count&show_faces=false&width=100&action=like&font&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px; position:relative; top:1px; left:10px;" allowTransparency="true"></iframe>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="https://adrienjoly.com/playem" data-count="none" data-via="Play_em" data-related="adrienjoly:the creator of Play'em" data-text="When there's nothing cool on TV, I watch my friends' videos on Play'em! Check it out!" >Tweet</a>
<!--<a href="https://twitter.com/Play_em" class="twitter-follow-button" data-show-count="false">Follow @Play_em</a>-->
<script src="https://platform.twitter.com/widgets.js" type="text/javascript"></script>
<iframe allowtransparency="true" frameborder="0" scrolling="no" src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Play_em&show_count=false" style="width:80px; height:20px;"></iframe>
</div>
<div id="welcome">
<p id="txtWelcome">Welcome to play'em, TV made by your friends!</p>
<p id="txtCallToAction">Connect to your facebook account,<br> to watch your friends' shared videos.</p>
<p style="color: yellow;">As <a href="https://www.facebook.com/useplayem/photos/a.216973925020301.70828.192531437464550/924497214267965/?type=3&theater" target="_blank" style="text-decoration: underline;">decided by Facebook</a>, Playem will only work for users who already used it in the past, sorry...
<p>
<a href="#" id="fbconnect"><span>Connect with Facebook</span></a>
<input type="checkbox" id="chkGroups" checked="checked"><small style="color:#999"> Also play videos from your groups (optional)</small>
</p>
<p id="txtNota"><small>NB: We don't store your personal data :-)</small></p>
</div>
<div id="container">
<div id="player">
<ul id="playlist"></ul>
<select id="selGroup"></select>
<div id="videoEmbed"></div>
<div id="socialPane"></div>
<div id="btnNext">Next</div>
</div>
</div>
<p id="footer">
<a href="https://adrienjoly.com/playem" target="_blank" title="play'em, a weekend project by adrien joly">@adrienjoly</a>
</p>
<div id="modalDialog">
<div id="modalEmbed"></div>
</div>
<script src="js/PlayemApp.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>