A webmail client. Forked from https://git.sr.ht/~migadu/alps
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
654 B

  1. {{template "head.html" .}}
  2. {{template "nav.html" .}}
  3. {{template "util.html" .}}
  4. <div class="page-wrap">
  5. {{ template "aside" . }}
  6. <div class="container">
  7. <main class="create-update">
  8. <form method="POST">
  9. <h2>Delete "{{ .Mailbox.Name }}"?</h2>
  10. <div class="alert">
  11. <strong>Warning!</strong> This will permanently delete all messages
  12. in "{{.Mailbox.Name}}".
  13. </div>
  14. <div class="actions">
  15. <button type="submit">Delete "{{.Mailbox.Name}}"</button>
  16. <a class="button-link" href="/">Cancel</a>
  17. </div>
  18. </form>
  19. </main>
  20. </div>
  21. </div>
  22. {{template "foot.html"}}