aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/alps/compose.html24
1 files changed, 22 insertions, 2 deletions
diff --git a/themes/alps/compose.html b/themes/alps/compose.html
index 0342c29..be84b03 100644
--- a/themes/alps/compose.html
+++ b/themes/alps/compose.html
@@ -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>