blob: fcfbeaaf4de0ca61b3dcbdee2602caa480525910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<button class="close-mail-button">
<i class="fa fa-times"></i>
</button>
<div class="compose-view">
{{> 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="floatlabel">
<label class="floatlabel" for="subject">{{t 'subject'}}</label>
<input class="floatlabel" name="subject" type="text" id="subject" value="{{subject}}" placeholder="{{t 'subject'}}" tabindex="4"/>
</div>
<div class="floatlabel">
<label class="floatlabel" for="body">{{t 'body'}}</label>
<textarea class="floatlabel" name="body" id="text-box" placeholder="{{t 'body'}}" tabindex="5">{{body}}</textarea>
</div>
{{> attachments_list }}
<div class="buttons-group columns compose-view__buttons">
<button id="send-button" tabindex="6"><i class="fa fa-send"></i></button>
<div class="compose-view__buttons-attachment"><span id="attachment-button" tabindex="6"></span></div>
<button id="trash-button" tabindex="7">{{t 'trash-button'}}<i class="fa fa-trash-o"></i></button>
<div id="draft-save-status"></div>
</div>
</div> <!-- ./compose-view -->
|