From dbe21e7fc9395f9f30fe3299ce09d59dc8a693e9 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Sun, 20 Jun 2021 16:12:54 -0400 Subject: initial commit --- templates/index.html | 10 ++++++++++ templates/view.html | 9 +++++++++ 2 files changed, 19 insertions(+) create mode 100644 templates/index.html create mode 100644 templates/view.html (limited to 'templates') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..daa6893 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,10 @@ + + +Front page + + +Welcome to this sample application! To access protected pages you need to log in. Accepted methods are kerberos and ldap. + +{{ session }} + + diff --git a/templates/view.html b/templates/view.html new file mode 100644 index 0000000..5c14175 --- /dev/null +++ b/templates/view.html @@ -0,0 +1,9 @@ + +View Session Cookie +Username: {{ s_user }}
{# +Cookie user: {{ c_user }}
+Session: {{ session }}
+Cookies: {{ cookie }}
#} +Session expires: {{ cookie.timestamp }}
+Logged in through: {{ cookie.type }} + -- cgit