index.html 747 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <script src='proxy.js'>
  5. </script>
  6. <style type='text/css'>
  7. html {
  8. background-color: rgb(48,48, 48);
  9. color: rgb(221, 190, 120);
  10. font-family: "HelveticaNeue", Helvetica, Arial;
  11. }
  12. a {
  13. color: rgb(193, 127, 128);
  14. }
  15. #info_div {
  16. font-size:small;
  17. color: rgb(108, 144, 100);
  18. }
  19. .device_details {
  20. font-size:small;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <h3>Chat History</h3>
  26. <ul id='history'>
  27. </ul>
  28. <form id="msg_form">
  29. <input type='text' name='message' id='msg_field'/>
  30. <input type='submit'/>
  31. </form>
  32. <ul id='client_list'></ul>
  33. <div id='info_div'></div>
  34. </body>
  35. </html>