summaryrefslogtreecommitdiff
path: root/templates/view.html
blob: 0496caebb8bc9df76216331ca46c7d6c92f48b6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html>
<title>View Session Cookie</title>
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>
bgstack15