mirror of
https://github.com/codl/forget
synced 2025-01-23 20:21:03 +01:00
7 lines
218 B
HTML
7 lines
218 B
HTML
{% if session %}
|
|
<p>Hello, {{session['display_name']}}! <a href="/logout">Log out</a></p>
|
|
<p><code>{{session}}</code></p>
|
|
{% else %}
|
|
<p>Hello, stranger! <a href="/login/twitter">Log in with Twitter</a></p>
|
|
{% endif %}
|