diff options
| author | Jonathan Vingiano <jvingiano@gmail.com> | 2013-01-17 15:34:15 -0500 |
|---|---|---|
| committer | Jonathan Vingiano <jvingiano@gmail.com> | 2013-01-17 15:34:15 -0500 |
| commit | e53a355ae0425c1d5f5a485d2748c692f1131024 (patch) | |
| tree | 5f56678da6e7ad2a52f35a0ce70e8ce89c728fb1 /views/total.ejs | |
waiting2init
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> |
