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.
 
 
 
 

24 lines
618 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>Create new folder</h2>
  10. <label for="name">Name</label>
  11. <input type="text" name="name" id="name" autofocus />
  12. {{ if .Error }}<p>{{ .Error }}</p>{{ end }}
  13. <div class="actions">
  14. <button type="submit">Save</button>
  15. <a class="button-link" href="/">Cancel</a>
  16. </div>
  17. </form>
  18. </main>
  19. </div>
  20. </div>
  21. {{template "foot.html"}}