Solutions for MEIM
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 415B

123456789101112
  1. {% extends 'base.html' %}
  2. {% block title %} Login {% endblock %}
  3. {% block content %}
  4. <div class="container"><form method="post" action="{% url 'login' %}">
  5. {% csrf_token %}
  6. Benutzername: {{ form.username }}
  7. <br>Passwort: {{ form.password }} <br>
  8. <button type="submit" class="btn btn-default">Anmelden</button>
  9. <input type="hidden" name="next" value="{{ next }}" />
  10. </form>
  11. </div>
  12. {% endblock %}