{% if user %}
Welcome, {{ user.email }}
Logout
{% else %}
Login
{% endif %}
Todo List
Add Todo
{% for todo in todos %}
{{ todo.title }}
{% endfor %}