-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser-feedback-chat.html
22 lines (20 loc) · 998 Bytes
/
user-feedback-chat.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template name="ufbchat">
<div class='ufb-head-row'>
<div class='ufb-head'>Chat conversations {{#if isChatModerator}} with {{currentName}} <a href='#' class='ufb-archiveMessages'>(Archive Messages)</a>{{/if}}</div>
<div class='ufb-chat-close'>✖</div>
</div>
{{#if currentUser}}
<div class='ufb-row'>
{{#if isChatModerator}}
<div class='ufb-list'>
{{#each list}}<div class='ufb-chat-status{{live}}'><div class='ufb-chatuser' id='{{_id}}'>{{name}}</div><div class='ufb-msg-tm'>{{ufbFormatDate lastUpdate}}</div></div>{{/each}}</div>
{{/if}}
<div class='ufb-msg-section'>{{#each messages}}<div class='ufb-msg-block'><div class='ufb-msg-from'>{{fromName}}:</div><div class='ufb-msg'>{{message}}</div><div class='ufb-msg-tm'>at {{ufbFormatDate at}}</div></div>{{/each}}</div>
</div>
<form id='ufb-send-message'>
<input type='textbox' class='ufb-chat-input' placeholder='Chat with Support'>
</form>
{{else}}
<h1> Please log in to chat </h1>
{{/if}}
</template>