You've already forked python-fido2
mirror of
https://github.com/solokeys/python-fido2.git
synced 2026-03-11 17:13:23 -07:00
22 lines
604 B
HTML
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>
|