aboutsummaryrefslogtreecommitdiff
path: root/public/compose.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/compose.html')
-rw-r--r--public/compose.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/public/compose.html b/public/compose.html
new file mode 100644
index 0000000..8253eeb
--- /dev/null
+++ b/public/compose.html
@@ -0,0 +1,24 @@
+{{template "head"}}
+
+<h1>koushin</h1>
+
+<p>
+ <a href="/mailbox/INBOX">Back</a>
+</p>
+
+<h2>Compose new message</h2>
+
+<form method="post" action="/compose">
+ <p>From:</p>
+ <input type="text" name="from">
+ <p>To:</p>
+ <input type="text" name="to">
+ <p>Subject:</p>
+ <input type="text" name="subject">
+ <p>Body:</p>
+ <textarea name="text" cols="80" rows="20"></textarea>
+ <br><br>
+ <input type="submit" value="Send">
+</form>
+
+{{template "foot"}}