aboutsummaryrefslogtreecommitdiff
path: root/public/compose.html
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2019-12-16 12:51:42 +0100
committerSimon Ser <contact@emersion.fr>2019-12-16 12:52:44 +0100
commitd897eeee5c4d163891d0b6a8f85d328ccada7575 (patch)
tree39d2428b8f9cb677d79e66cb3763cdaed6147616 /public/compose.html
parente83844fbad63a0d6fc2d29a8a412c95f2a419b56 (diff)
downloadalps-d897eeee5c4d163891d0b6a8f85d328ccada7575.tar.gz
alps-d897eeee5c4d163891d0b6a8f85d328ccada7575.zip
Introduce base plugin
This plugin offers base IMAP/SMTP functionality. References: https://todo.sr.ht/~sircmpwn/koushin/39
Diffstat (limited to 'public/compose.html')
-rw-r--r--public/compose.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/public/compose.html b/public/compose.html
deleted file mode 100644
index 2a52675..0000000
--- a/public/compose.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{{template "head.html"}}
-
-<h1>koushin</h1>
-
-<p>
- <a href="/mailbox/INBOX">Back</a>
-</p>
-
-<h2>Compose new message</h2>
-
-<form method="post" action="">
- <input type="hidden" name="in_reply_to" value="{{.Message.InReplyTo}}">
-
- <p>From:</p>
- <input type="email" name="from" value="{{.Message.From}}">
- <p>To:</p>
- <input type="email" name="to" multiple value="{{.Message.ToString}}">
- <p>Subject:</p>
- <input type="text" name="subject" value="{{.Message.Subject}}">
- <p>Body:</p>
- <textarea name="text" cols="80" rows="20">{{.Message.Text}}</textarea>
- <br><br>
- <input type="submit" value="Send">
-</form>
-
-{{template "foot.html"}}