aboutsummaryrefslogtreecommitdiff
path: root/themes/alps/delete-mailbox.html
blob: 0429fe0eaaefc5bd1bec38f941ac2656e59d7cf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{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>Delete "{{ .Mailbox.Name }}"?</h2>
        <div class="alert">
          <strong>Warning!</strong> This will permanently delete all messages
          in "{{.Mailbox.Name}}".
        </div>
        <div class="actions">
          <button type="submit">Delete "{{.Mailbox.Name}}"</button>
          <a class="button-link" href="/">Cancel</a>
        </div>
      </form>
    </main>
  </div>
</div>

{{template "foot.html"}}