blob: e3e7eb0330d071cb88d01c5937050d9816aaacb1 (
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
33
34
35
36
37
38
39
40
41
42
|
<% include ../partials/header %>
<div class="subtitle">
<a href='/'>< Home</a> ·
<a href='/mail/'>Inbox</a>
</div>
<div id="content">
<table id="compose">
<tr>
<td>
<form>
<div>
<label for="compose_to">to:</label><input id="compose_to" type='text' name='username'>
</div>
<div style="margin-top: 5px;">
<label for="compose_subject">subject:</label><input id="compose_subject" type='text' name='subject' value='<%= subject %>'>
</div>
<div>
<textarea name="body" placeholder="Enter your message"></textarea><br>
</div>
<div class="buttons">
<!-- <button id="save_draft" style="opacity: 0.5">SAVE DRAFT</button> -->
<input type="submit" value="SEND MESSAGE" />
<div class="loader"></div>
</div>
<div class="errors"></div>
</form>
</td>
</tr>
</table>
</div>
<script type="text/html" id="reply-template">
_____________________
On {{date}} {{time}}, {{username}} <%= verb %>:
</script>
<% include ../partials/footer %>
|