alps theme: wire up auto-completion in compose

This commit is contained in:
Drew DeVault 2020-05-20 16:06:59 -04:00 committed by Simon Ser
parent 7293b7e8e7
commit 79233fa5cb
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -20,14 +20,34 @@
<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>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
list="emails"
{{ 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>
<datalist id="emails">
{{range .Extra.EmailSuggestions}}
<option value="{{.}}">
{{end}}
</datalist>
<div class="actions">
<button type="submit">Send Message</button>
<button type="submit" name="save_as_draft">Save as draft</button>