Guest User

log.html

a guest
Jan 9th, 2016
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. {% extends "template.html" %}
  2. {% block content %}
  3. <h1>Login</h1>
  4. {% if error %}
  5. <p> class=error><strong>Error:</strong> {{error}}
  6. {% endif %}
  7. <form action="" method=post>
  8. <dl>
  9. <dt>Username:
  10. <dd><input type=text name = username value="{{
  11. request.form.username}}">
  12. <dt>Password:
  13. <dd><input type=password name = password>
  14. </dl>
  15. <p><input type=submit value=Login></p>
  16. </form>
  17. {% endblock %}
Add Comment
Please, Sign In to add comment