diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-08-03 22:33:34 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-08-03 22:33:34 -0400 |
| commit | 1977a99c596485d2e42e544b2b0ecd0625395775 (patch) | |
| tree | 472f8e30a71226047d7d5d900745c296a1ba69f5 /views/pages/room.html | |
| parent | 6824643f459c6d63ffd8ff846b373b2e49707abc (diff) | |
app skeleton
Diffstat (limited to 'views/pages/room.html')
| -rw-r--r-- | views/pages/room.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/views/pages/room.html b/views/pages/room.html new file mode 100644 index 0000000..ec1f353 --- /dev/null +++ b/views/pages/room.html @@ -0,0 +1,27 @@ +<html> +<head> +<title>yt-chat</title> +<style> +</style> +</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>
\ No newline at end of file |
