chat_page.html 586 B

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