summaryrefslogtreecommitdiff
path: root/views/pages/room.ejs
blob: f3d55929b9f5f38923399ec235b63a50971b70d6 (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>
<link rel="stylesheet" href="/css/css.css">
<style>
</style>
</head>
<body>

<div id="bg"></div>

<div id="video"></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>