diff options
Diffstat (limited to 'themes/alps/new-mailbox.html')
-rw-r--r-- | themes/alps/new-mailbox.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/alps/new-mailbox.html b/themes/alps/new-mailbox.html new file mode 100644 index 0000000..d202783 --- /dev/null +++ b/themes/alps/new-mailbox.html @@ -0,0 +1,23 @@ +{{template "head.html" .}} +{{template "nav.html" .}} +{{template "util.html" .}} + +<div class="page-wrap"> + {{ template "aside" . }} + <div class="container"> + <main class="create-update"> + <form method="POST"> + <h2>Create new folder</h2> + <label for="name">Name</label> + <input type="text" name="name" id="name" autofocus /> + {{ if .Error }}<p>{{ .Error }}</p>{{ end }} + <div class="actions"> + <button type="submit">Save</button> + <a class="button-link" href="/">Cancel</a> + </div> + </form> + </main> + </div> +</div> + +{{template "foot.html"}} |