Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <head>
  2. <title>Log in</title>
  3. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  4. <style>
  5. body{
  6. font-family:Arial,Helvetica,sans-serif;
  7. font-size: 12px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. {{ state }}
  13. <form action="/login/" method="post">
  14. {% if next %}
  15. <input type="hidden" name="next" value="{{ next }}" />
  16. {% endif %}
  17. username:
  18. <input type="text" name="username" value="{{ username}}" /><br />
  19. password:
  20. <input type="password" name="password" value="" /><br />
  21. {% csrf_token %}
  22. <input type="submit" value="Log In" />
  23.  
  24. </form>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement