summaryrefslogtreecommitdiff
path: root/views/total.ejs
blob: af7a03ef8cf756d66e40129df3527ef6e8b09381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
  <head>
    <title><%= title %></title>
    <link rel='stylesheet' href='/stylesheets/style.css' />
    <script src="/socket.io/socket.io.js"></script>
  </head>
  <body>
    <h1><%= title %></h1>
    <% for(user in users){ %>
      <%= users[user].firstname %>
      <%= users[user].lastname %>
      <%= users[user].count %>
   <% } %>
  </body>
</html>