summaryrefslogtreecommitdiff
path: root/views/pages/room.ejs
blob: 36e414077fbd8b7177388eb9c5b8c6141a8e1409 (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
<html>
<head>
<title>yt-chat</title>
<link rel="stylesheet" href="/css/css.css">
<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>