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.
 
 
 
 

35 lines
855 B

  1. {{template "head.html" .}}
  2. <main class="login">
  3. <section>
  4. <h1>Webmail Login</h1>
  5. <form method="post" action="/login">
  6. <div class="action-group">
  7. <label for="username">Username</label>
  8. <input type="text" name="username" id="username" autofocus />
  9. </div>
  10. <div class="action-group">
  11. <label for="password">Password</label>
  12. <input type="password" name="password" id="password" />
  13. </div>
  14. {{if .CanRememberMe}}
  15. <div class="action-group">
  16. <label for="remember-me" class="checkbox">
  17. <input type="checkbox" name="remember-me" id="remember-me" />
  18. Remember me
  19. </label>
  20. </div>
  21. {{end}}
  22. <div class="action-group">
  23. <button type="submit">Sign in</button>
  24. </div>
  25. </form>
  26. </section>
  27. </main>
  28. {{template "foot.html"}}