summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/compose/compose_box.hbs
blob: d5501e698d791bed72fbf8d71abff736f7f71b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<button class="close-mail-button">
  <i class="fa fa-times"></i>
</button>
<input type="text" id="subject" value="{{subject}}" placeholder="{{t 'Subject'}}" tabindex="1"/>
<textarea id="text-box" placeholder="{{t 'Body'}}" tabindex="2">{{body}}</textarea>

{{> recipients }}

<div class="clearfix">
    <a id="to-trigger" class="hide">{{t 'To'}}</a>
    <a id="ccs-trigger" class="hide">{{t 'CC'}}</a>
    <a id="bccs-trigger" class="hide">{{t 'BCC'}}</a>
</div>

<div class="buttons-group columns">
  <button id="send-button" tabindex="6"><i class="fa fa-send"></i></button>
  <button id="trash-button" tabindex="7">{{t 'trash-button'}}<i class="fa fa-trash-o"></i></button>
  <button id="draft-button">{{t 'draft-button'}}<i class="fa fa-pencil"></i></button>
  <div id="draft-save-status"></div>
</div>