您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
752B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>{% block title %} Login {% endblock %}</h1>
  4. <form method="POST" action="/login">
  5. <div class="mb-3 mt-3">
  6. <input class="form-control" type="email" name="email" placeholder="Your Email" autofocus="">
  7. </div>
  8. <div class="mb-3 mt-3">
  9. <input class="form-control" type="password" name="password" placeholder="Your Password">
  10. </div>
  11. <div class="mb-3 mt-3">
  12. <label class="checkbox">
  13. <input type="checkbox">
  14. Remember me
  15. </label>
  16. </div>
  17. <button class="btn btn-primary">Login</button>
  18. </form>
  19. {% endblock %}