blob: 884947043b0d69dd50b1ba992ff93be0491ac16a (
plain)
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
|
<html>
<head>
<title>yt-chat</title>
<link rel="stylesheet" href="/css/css.css">
<style>
</style>
</head>
<body>
<div id="bg"></div>
<div id="video"></div>
<div id="playlist">
<form>
enter a url
<input type="text" name="url">
</form>
<ul id="videos">
</ul>
</div>
<% include ../partials/chat %>
<% include ../partials/login %>
<% include ../partials/settings %>
<script type="text/html" id="message_template">
<div class="row">
<span class="nick"></span>
<span class="msg"></span>
</div>
</script>
</body>
<% include ../partials/scripts %>
</html>
|