blob: ec1f35389fe9b05a9543c04df29b192c2d52eb1d (
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
|
<html>
<head>
<title>yt-chat</title>
<style>
</style>
</head>
<body>
<div id="video"></div>
<div id="chat">
<div id="messages"></div>
<form>
<input type="text" id="message">
</form>
</div>
<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>
|