blob: ec83d7dc72370ad892f7341c87200849eaeaf2d2 (
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
|
<% 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="message" placeholder="Enter your message"></textarea><br>
</div>
<div class="buttons">
<button id="save_as_draft" style="opacity: 0.5">SAVE DRAFT</button>
<input type="submit" value="SEND MESSAGE" />
</div>
<div class="errors"></div>
</form>
</td>
</tr>
</table>
</div>
<% include ../partials/footer %>
|