mirror of
https://github.com/codl/forget
synced 2025-01-08 13:42:35 +01:00
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 %}
|