109 lines
2.4 KiB
HTML
109 lines
2.4 KiB
HTML
<!doctype html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Santa's Intelligence Office – Token Stream</title>
|
||
<style>
|
||
body {
|
||
margin: 0;
|
||
background: #d9f3e1; /* pale Xmas green */
|
||
color: #000000;
|
||
font-family: Verdana, Arial, sans-serif;
|
||
}
|
||
.page {
|
||
max-width: 800px;
|
||
margin: 20px auto;
|
||
padding: 12px 16px 18px;
|
||
background: #ffffff;
|
||
border: 3px solid #c00000; /* Xmas red */
|
||
}
|
||
.subtitle {
|
||
font-size: 11px;
|
||
text-transform: uppercase;
|
||
letter-spacing: 1px;
|
||
color: #006600; /* Xmas green */
|
||
margin-bottom: 4px;
|
||
}
|
||
h1 {
|
||
font-size: 20px;
|
||
margin: 6px 0 10px;
|
||
color: #900000; /* darker red */
|
||
}
|
||
p {
|
||
font-size: 13px;
|
||
line-height: 1.4;
|
||
margin: 6px 0;
|
||
}
|
||
.section-title {
|
||
font-size: 13px;
|
||
font-weight: bold;
|
||
margin-top: 14px;
|
||
margin-bottom: 4px;
|
||
color: #006600;
|
||
}
|
||
.tokens {
|
||
margin: 6px 0 8px;
|
||
padding: 8px;
|
||
background: #fff8f8; /* subtle red hint */
|
||
border: 1px solid #cc9999;
|
||
}
|
||
.tok {
|
||
font-family: "Courier New", monospace;
|
||
font-size: 12px;
|
||
margin: 2px 0;
|
||
}
|
||
.hint {
|
||
font-size: 12px;
|
||
color: #333366;
|
||
margin-top: 4px;
|
||
}
|
||
code {
|
||
font-family: "Courier New", monospace;
|
||
font-size: 12px;
|
||
background: #eef6ee;
|
||
padding: 1px 3px;
|
||
border: 1px solid #c0d9c0;
|
||
}
|
||
a {
|
||
color: #a00000;
|
||
text-decoration: none;
|
||
}
|
||
a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
hr {
|
||
border: 0;
|
||
border-top: 1px solid #cc9999;
|
||
margin: 14px 0 10px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="page">
|
||
<div class="subtitle">Santa's Intelligence Office – Winter Briefing</div>
|
||
<h1>Token Stream Record</h1>
|
||
|
||
<div class="section-title">Observed 32-bit outputs</div>
|
||
<div class="tokens">
|
||
{% for t in observed %}
|
||
<div class="tok">dec {{ t.dec }} hex {{ t.hex }}</div>
|
||
{% endfor %}
|
||
</div>
|
||
<p class="hint">{{ note }}</p>
|
||
|
||
<hr>
|
||
|
||
<div class="section-title">Submission format</div>
|
||
<p>
|
||
Use: <code>/flag?token=VALUE</code><br>
|
||
Decimal or hex (<code>0x...</code>) both accepted.
|
||
</p>
|
||
|
||
<div class="section-title">Machine-readable stream</div>
|
||
<p>
|
||
<a href="/api/observed"><code>/api/observed</code></a>
|
||
</p>
|
||
</div>
|
||
</body>
|
||
</html>
|