Files
python-fido2/examples/server/static/index.html
Dain Nilsson 7fbdf0bcd6 Clean up example server a bit.
- Add a README.
 - Replace requirements.txt with Pipfile.
 - Add some minimal styling.
2018-08-09 11:39:50 +02:00

22 lines
604 B
HTML

<html>
<head>
<title>Fido 2.0 webauthn demo</title>
<script src="/cbor.js"></script>
<style>
body { font-family: sans-serif; line-height: 1.5em; padding: 2em 10em; }
h1, h2 { color: #325F74; }
a { color: #0080ac; font-weight: bold; text-decoration: none;}
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>WebAuthn demo using python-fido2</h1>
<p>This demo requires a browser supporting the WebAuthn API!</p>
<hr>
<h2>Available actions</h2>
<a href="/register.html">Register</a><br>
<a href="/authenticate.html">Authenticate</a><br>
</body>
</html>