Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

22 Zeilen
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 %}