26 lines
969 B
HTML
26 lines
969 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Juice - Register Security Key</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/juice.css">
|
|
<script type="text/javascript" src="/static/cbor.js"></script>
|
|
<script type="text/javascript" src="/static/juice-auth.js"></script>
|
|
<script>url_prefix = '{{ url_prefix }}';</script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="An IOT hub.">
|
|
<link rel="icon" href="/static/orange-juice.svg">
|
|
</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>
|