7 lines
223 B
HTML
7 lines
223 B
HTML
|
{% if session %}
|
||
|
Hello, {{session['display_name']}}! <a href="/logout">Log out</a>
|
||
|
<code>{{session['created_at']}}</code>
|
||
|
{% else %}
|
||
|
Hello, stranger! <a href="/login/twitter">Log in with Twitter</a>
|
||
|
{% endif %}
|