Guest User

Untitled

a guest
Nov 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. {% extends "base.html" %}
  2. {% load url from future %}
  3.  
  4. {% block content %}
  5.  
  6. {% if form.errors %}
  7. <p>Your username and password didn't match. Please try again.</p>
  8. {% endif %}
  9.  
  10. <form method="post" action="{% url 'django.contrib.auth.views.login' %}">
  11. {% csrf_token %}
  12. <table>
  13. <tr>
  14. <td>{{ form.username.label_tag }}</td>
  15. <td>{{ form.username }}</td>
  16. </tr>
  17. <tr>
  18. <td>{{ form.password.label_tag }}</td>
  19. <td>{{ form.password }}</td>
  20. </tr>
  21. </table>
  22.  
  23. <input type="submit" value="login" />
  24. <input type="hidden" name="next" value="{{ next }}" />
  25. </form>
  26.  
  27. {% endblock %}
Add Comment
Please, Sign In to add comment