diff options
Diffstat (limited to 'views/total.ejs')
| -rw-r--r-- | views/total.ejs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/total.ejs b/views/total.ejs new file mode 100644 index 0000000..af7a03e --- /dev/null +++ b/views/total.ejs @@ -0,0 +1,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> |
