From 2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 Mon Sep 17 00:00:00 2001 From: "Jannis M. Hoffmann" Date: Sun, 3 Dec 2023 19:22:12 +0100 Subject: initial commit --- src/jwebmail/templates/writemail.html | 82 +++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/jwebmail/templates/writemail.html (limited to 'src/jwebmail/templates/writemail.html') diff --git a/src/jwebmail/templates/writemail.html b/src/jwebmail/templates/writemail.html new file mode 100644 index 0000000..31adff1 --- /dev/null +++ b/src/jwebmail/templates/writemail.html @@ -0,0 +1,82 @@ +{% extends 'mainlayout.html' %} + +{% block content %} +
+ +

Write Message

+ + {% if warning is defined %} +

{{ warning }}

+ {% endif %} + +
+ +
+ {{ form.send_to.label(class='label') }} +
+ {{ form.send_to(class='input') }} +
+
+ +
+ {{ form.subject.label(class='label') }} +
+ {{ form.subject(class='input') }} +
+
+ +
+ {{ form.cc.label(class='label') }} +
+ {{ form.cc(class='input') }} +
+
+ +
+ {{ form.bcc.label(class='label') }} +
+ {{ form.bcc(class='input') }} +
+
+ +
+ {{ form.answer_to.label(class='label') }} +
+ {{ form.answer_to(class='input') }} +
+
+ +
+ {{ form.content.label(class='label') }} +
+ {{ form.content(class='textarea', rows=10) }} +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+{% endblock %} -- cgit v1.2.3