Buckler/templates/register_key.html
2019-09-24 19:34:20 -04:00

23 lines
808 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Buckler - Register Security Key</title>
<link rel="stylesheet" type="text/css" href="/static/buckler.css">
<script type="text/javascript" src="/static/cbor.js"></script>
<script type="text/javascript" src="/static/buckler-auth.js"></script>
<script>const url_prefix = '{{ url_prefix }}';</script>
</head>
<body>
<main>
<div id="devices">
<div class="device">
<h1>Register Security Key</h1>
<p>Upon clicking submit, your security key will begin flashing. Have it ready.
<p><label for="security_key_nick">Security key nick</label> <input id="security_key_nick" type="text" minlength="1" maxlength="64" required>
<p><input type="button" value="Submit" onclick="register()">
</div>
</div>
</main>
</body>
</html>