summaryrefslogtreecommitdiff
path: root/wk9/lect/cookies/templates/index.html
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-08-01 09:36:33 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-08-01 09:36:33 +0000
commit0abf83d77e76ac4c3ce9f4a298f6dfc10f871433 (patch)
tree2a6ba436ef09ba1cedb5b80b98bfcdd1a9a29bc9 /wk9/lect/cookies/templates/index.html
parent3549bf254ad34bb013f3ad20fa47c59b19a29907 (diff)
Thu, Aug 1, 2024, 2:36 AM -07:00
Diffstat (limited to 'wk9/lect/cookies/templates/index.html')
-rw-r--r--wk9/lect/cookies/templates/index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/wk9/lect/cookies/templates/index.html b/wk9/lect/cookies/templates/index.html
new file mode 100644
index 0000000..f902b58
--- /dev/null
+++ b/wk9/lect/cookies/templates/index.html
@@ -0,0 +1,15 @@
+{% extends "layout.html" %}
+
+{% block body %}
+
+ {% if name %}
+
+ You are logged in as {{ name }}.
+
+ {% else %}
+
+ You are not logged in.
+
+ {% endif %}
+
+{% endblock %}