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.
 
 
 
 

31 lines
686 B

  1. {{template "head.html" .Global}}
  2. {{template "nav.html" .Global}}
  3. <div class="container">
  4. <form method="post" action="/login" class="col-md-6">
  5. <div class="form-group">
  6. <label for="username">Username</label>
  7. <input
  8. class="form-control"
  9. type="text"
  10. name="username"
  11. id="username"
  12. autofocus />
  13. </div>
  14. <div class="form-group">
  15. <label for="password">Password</label>
  16. <input
  17. class="form-control"
  18. type="password"
  19. name="password"
  20. id="password" />
  21. </div>
  22. <button
  23. type="submit"
  24. class="btn btn-primary"
  25. >Log in</button>
  26. </form>
  27. </div>
  28. {{template "foot.html"}}