diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 28 | 
1 files changed, 18 insertions, 10 deletions
| @@ -1,17 +1,25 @@ -<html> +<html class="page">    <head>    </head> -  <body> -    <div id="chat" height="90%"> -      Hello world<br> +  <body class="container"> +    <div id="chan-container"> +      <div class="ui pointing secondary menu"> +      </div> +      </div> -      <input id="send-message" type="text"> -      <input id="submitb" type="submit" text="send"> -      <script> -        window.$ = window.jQuery = require('./jquery-2.2.2.js'); -        var blachat = require("./lib/index.js"); -      </script> +      <div id="message"> +        <div class="ui input" id="message-container"> +          <input placeholder="Message" id="send-message" type="text"> +        </div> +      </div> +    <script> +      window.$ = window.jQuery = require('./lib/jquery-2.2.2.js'); +      var blachat = require("./index.js"); +    </script> +    <link rel="stylesheet" type="text/css" href="lib/semantic/dist/semantic.min.css"> +    <link rel="stylesheet" type="text/css" href="style.css"> +    <script src="lib/semantic/dist/semantic.min.js"></script>    </body>  </html> | 
