summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-28 16:45:18 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-28 16:45:18 -0400
commit26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f (patch)
treeb449c2349adeb1bf5c4bbc7ca488105508d362f0 /templates/index.html
parentclear session at logout (diff)
downloadsession_app-26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f.tar.gz
session_app-26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f.tar.bz2
session_app-26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f.zip
minor fixes, mostly cosmeticHEADmaster
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index daa6893..27b3a7e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,10 +1,10 @@
<html>
<head>
<title>Front page</title>
+<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
Welcome to this sample application! To access protected pages you need to <a href="/login/">log in</a>. Accepted methods are kerberos and ldap.
-
-{{ session }}
+<p>{{ session }}
</body>
</html>
bgstack15