Figure 14-8. Screenshot of Tradechat registration page
The templating code for the login page, as shown in Example 14-5, is pretty similar to the
code for the registration page. Again, the user can provide login information via a form.
Example 14-5. Template for Tradechat user login
{% extends “layout.html” %}
{% block body %}
Login
{% if error %}
Error: {{ error }}{% endif %}
{% endblock %}