chat_page.html 587 B

123456789101112131415161718192021
  1. <!-- Top level template for the chat page -->
  2. <template name="chat_page">
  3. <h2>Type in the box below to send a message!</h2>
  4. <div class="row">
  5. <div class="col-md-12">
  6. <div class="well well-lg">
  7. {{#each messages}}
  8. {{> chat_message}}
  9. {{/each}}
  10. </div>
  11. </div>
  12. </div>
  13. <div class="row">
  14. <div class="col-md-12">
  15. <form class="js-send-chat">
  16. <input class="input" type="text" name="chat" placeholder="type a message here...">
  17. <button class="btn btn-default">send</button>
  18. </form>
  19. </div>
  20. </div>
  21. </template>