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.

login.html 558B

12345678910111213141516171819202122
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. {% if user.is_authenticated %}
  4. <p><a href="{% url 'logout' %}?next=/posts"
  5. class="btn btn-warning">Abmelden</a></p>
  6. {% endif %}
  7. Login
  8. {% endblock %}
  9. {% block content %}
  10. <form method="post" action="{% url 'login' %}">
  11. {% csrf_token %}
  12. Benutzername: {{ form.username }} <br>
  13. Passwort: {{ form.password }} <br>
  14. <button type="submit" class="btn btn-default">Anmelden</button>
  15. <input type="hidden" name="next" value="{{ next }}"/>
  16. </form>
  17. {% endblock %}