summaryrefslogtreecommitdiff
path: root/wk9/lect/cookies/templates/index.html
blob: 3f08ec198bbb3fbca137e81994fd8c69030b2289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "layout.html" %}

{% block body %}

        {% if name %}

            You are logged in as {{ name }}. <a href="/logout">Log out</a>.

        {% else %}

            You are not logged in. <a href="/login">Log in</a>.

        {% endif %}

{% endblock %}