diff options
author | B. Stack <bgstack15@gmail.com> | 2021-06-28 16:45:18 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2021-06-28 16:45:18 -0400 |
commit | 26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f (patch) | |
tree | b449c2349adeb1bf5c4bbc7ca488105508d362f0 /templates | |
parent | clear session at logout (diff) | |
download | session_app-master.tar.gz session_app-master.tar.bz2 session_app-master.zip |
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 4 | ||||
-rw-r--r-- | templates/login_form.html | 1 | ||||
-rw-r--r-- | templates/settings.html | 1 | ||||
-rw-r--r-- | templates/view.html | 3 |
4 files changed, 7 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> diff --git a/templates/login_form.html b/templates/login_form.html index 254d45c..b3d5a3b 100644 --- a/templates/login_form.html +++ b/templates/login_form.html @@ -1,6 +1,7 @@ <html> <head> <title>Login Form</title> +<meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <center> diff --git a/templates/settings.html b/templates/settings.html index 884ea04..994a8b2 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -1,6 +1,7 @@ <html> <head> <title>Session_app settings</title> +<meta name="viewport" content="width=device-width, initial-scale=1"> <!--<style type="text/css" media="screen"> input { width: 500px; diff --git a/templates/view.html b/templates/view.html index 0496cae..0723d60 100644 --- a/templates/view.html +++ b/templates/view.html @@ -1,5 +1,8 @@ <html> +<head> +<meta name="viewport" content="width=device-width, initial-scale=1"> <title>View Session Cookie</title> +</head> Username: {{ s_user }}<br/>{# Cookie user: {{ c_user }}<br/> Session: {{ session }}<br/> |