userinfo.html
397 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<title>User Information</title>
</head>
<body>
<p>
<b>navigator.userAgent =</b>
<em>
<script type="text/javascript">
document.write(navigator.userAgent);
</script>
</em>
</p>
<p>
<b>uid =</b>
<em>
{% if uid %}
{{ uid }}
{% else %}
NO UID
{% endif %}
</em>
</p>
<p>
<b>user:</b>
<pre id="log">
{% if user %}
{{ user }}
{% else %}
NO USER
{% endif %}
</pre>
</p>
</body>
</html>