Development of an internal social media platform with personalised dashboards for students
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 815B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% if form.errors %}
  4. <p>Your username and password didn't match. Please try again.</p>
  5. {% endif %}
  6. {% if next %}
  7. {% if user.is_authenticated %}
  8. <p>Your account doesn't have access to this page. To proceed, please login with an account that has access.</p>
  9. {% else %}
  10. <p>Please login to see this page.</p>
  11. {% endif %}
  12. {% endif %}
  13. <form method="post" action="{% url 'login' %}">
  14. {% csrf_token %}
  15. <div>
  16. <td>{{ form.username.label_tag }}</td>
  17. <td>{{ form.username }}</td>
  18. </div>
  19. <div>
  20. <td>{{ form.password.label_tag }}</td>
  21. <td>{{ form.password }}</td>
  22. </div>
  23. <div>
  24. <input type="submit" value="login" />
  25. <input type="hidden" name="next" value="{{ next }}" />
  26. </div>
  27. </form>
  28. {% endblock %}