summaryrefslogtreecommitdiff
path: root/views/pages/index.ejs
blob: 45c6a845f95da328743ff8295c2c77281e974787 (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
<!doctype html>
<html>
<head>
<title>yt-chat</title>
<link rel="stylesheet" href="/css/css.css">
</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>