fingerprint/server/templates/pages/index.dust
2015-08-07 17:13:32 +02:00

53 lines
1.0 KiB
Plaintext

<html>
<head>
<title>The Code Bureau : Browser Fingerprint</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<style>
html, body {
margin: 0;
padding: 0;
}
body {
padding: 15px;
}
div {
width: 100%;
overflow: hidden;
}
pre {
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
}
button {
display: block;
margin: 10px auto;
padding: 10px 30px;
}
</style>
</head>
<body>
<div id="content">
<h1>Server</h1>
<h2>User Agent</h2>
{ua}
<pre>{uaParsed|jsp}</pre>
<h2>Headers</h2>
<pre>{headers|jsp}</pre>
<h1>Client</h1>
<noscript>No JavaScript</noscript>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"/></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<script src="/js/app.js"></script>
</body>
</html>