16 lines
454 B
HTML
16 lines
454 B
HTML
<!doctype html>
|
|
<html>
|
|
<head><meta charset="utf-8"><title>Dump Session</title></head>
|
|
<body>
|
|
<h3>Session Storage Dump</h3>
|
|
<pre id="out">loading...</pre>
|
|
<script>
|
|
try{
|
|
const user = sessionStorage.getItem('avanzacast_user') || '(no session user)';
|
|
document.getElementById('out').textContent = user;
|
|
}catch(e){ document.getElementById('out').textContent = 'error reading sessionStorage: '+String(e) }
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|