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 810B

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