From ee43823179ee627ac16ea9da8168e5f1bf9619c0 Mon Sep 17 00:00:00 2001 From: "Jannis M. Hoffmann" Date: Thu, 29 Oct 2020 12:13:04 +0100 Subject: Initial commit; Stable version --- templates/webmail/writemail.html.ep | 50 +++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 templates/webmail/writemail.html.ep (limited to 'templates/webmail/writemail.html.ep') diff --git a/templates/webmail/writemail.html.ep b/templates/webmail/writemail.html.ep new file mode 100644 index 0000000..171542e --- /dev/null +++ b/templates/webmail/writemail.html.ep @@ -0,0 +1,50 @@ +% layout 'mainlayout'; + +
+ +

Write Message

+ +% if (my $msg = stash('warning')) { +

<%= $msg %>

+% } + +
+ + + %= email_field 'to', id => 'mail', multiple => '', required => '' +
+ + + %= text_field 'subject', 'required' => '' +
+ + + %= email_field 'cc', 'multiple' => '' +
+ + + %= email_field 'bcc', 'multiple' => '' +
+ + + %= email_field 'back_to' +
+ + + %= text_area 'body', cols => 80, rows => 24, id => 'txt' +
+ + %= file_field 'attach' +
+ + + + %= csrf_field + +
+ + + +
\ No newline at end of file -- cgit v1.2.3