themes/alps: add button to save as draft

This commit is contained in:
Simon Ser 2020-03-27 11:30:11 +01:00
parent c053b7332e
commit 6395be6737
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -5,6 +5,7 @@
<div class="page-wrap">
<aside>
<a href="/compose" class="compose-mail active">Compose&nbsp;Mail</a>
<!-- TODO: use mailbox list from template data -->
<a href="/mailbox/INBOX">Inbox</a>
<a href="/mailbox/Drafts">Drafts</a>
<a href="/mailbox/Sent">Sent</a>
@ -18,17 +19,20 @@
<form method="post" action="" enctype="multipart/form-data">
<input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">
<label><span>From</span><input type="email" name="from" id="from" value="{{.Message.From}}" /></label>
<label><span>To</span><input type="email" name="to" id="to" value="{{.Message.ToString}}" multiple {{ if not .Message.To }} autofocus{{ end }}/></label>
<label><span>Subject</span><input type="text" name="subject" id="subject" value="{{.Message.Subject}}" {{ if .Message.To }} autofocus{{ end }}/></label>
<label><span>Attachments</span><input type="file" name="attachments" id="attachments" multiple></label>
<!-- TODO: list of previous attachments (needs design) -->
<textarea name="text" class="body">{{.Message.Text}}</textarea>
<div class="actions">
<button type="submit">Send Message</button>
<a href="/mailbox/INBOX">Cancel</a>
&nbsp;&nbsp;
<a href="/mailbox/INBOX">Discard</a>
<button type="submit" name="save_as_draft">Save as draft</button>
<button type="submit">Send Message</button>
</div>
</form>