Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. {% if form.errors %}
  2. <p>Your username and password didn't match. Please try again.</p>
  3. {% endif %}
  4.  
  5. {% if next %}
  6. {% if user.is_authenticated %}
  7. <p>Your account doesn't have access to this page. To proceed,
  8. 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.  
  14. <form method="post" action="{% url 'django.contrib.auth.views.login' %}">
  15. {% csrf_token %}
  16. <table>
  17. <tr>
  18. <td>{{ form.username.label_tag }}</td>
  19. <td>{{ form.username }}</td>
  20. </tr>
  21. <tr>
  22. <td>{{ form.password.label_tag }}</td>
  23. <td>{{ form.password }}</td>
  24. </tr>
  25. </table>
  26.  
  27. <input type="submit" value="login" />
  28. <input type="hidden" name="next" value="{{ next }}" />
  29. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement