A webmail client. Forked from https://git.sr.ht/~migadu/alps
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

31 行
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"}}