blob: 0723d6077fa78c4d129d0257fdbdd122ac4106b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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/>
Cookies: {{ cookie }}<br/>#}
Session expires: {{ cookie.timestamp }}<br/>
Logged in through: {{ cookie.type }}{% if groups %}<br/>
Usergroups:<ul>
{% for group in groups %}<li>{{ group }}</li>
{% endfor %}</ul>{% endif %}
</html>
|