Guest User

Untitled

a guest
Apr 8th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. {% extends "base.html" %}
  2. {% comment %}
  3.  
  4. Login page to authenticate users.
  5.  
  6. {% endcomment %}
  7.  
  8. {% block head %}
  9. <title>Django Consultants | Login</title>
  10. {% endblock %}
  11.  
  12. {% block body %}
  13. <header>
  14. <h1>Django Consultants</h1>
  15. <h2>Login Page</h2>
  16. </header>
  17.  
  18. <section>
  19. {% if form.errors %}
  20. <p>Your username and password didn't match, please try again.</p>
  21. {% endif %}
  22.  
  23. <form method="post" action=".">
  24. <p>
  25. <label for="id_username">Username:</label>
  26. {{ form.username }}
  27. </p>
  28. <p>
  29. <label for="id_password">Password:</label>
  30. {{ form.password }}
  31. </p>
  32. {% if next %}
  33. <input type="hidden" name="next" value="{{ next }}" />
  34. {% else %}
  35. <input type="hidden" name="next" value="/portal/" />
  36. {% endif %}
  37. <input type="submit" value="login" />
  38. </form>
  39. </section>
  40. {% endblock %}
Add Comment
Please, Sign In to add comment