Advertisement
lessientelrunya

failsuc

Jul 11th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. # failure.html just had this:
  2.  
  3. {% extends "layout.html" %}
  4.  
  5. {% block title %}
  6. failure
  7. {% endblock %}
  8.  
  9. {% block body %}
  10. You must provide your name and dorm!
  11. {% endblock %}
  12.  
  13. # success.html is similar:
  14.  
  15. {% extends "layout.html" %}
  16.  
  17. {% block title %}
  18. success
  19. {% endblock %}
  20.  
  21. {% block body %}
  22. You are registered! (Well, not really.)
  23. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement