22 lines
566 B
HTML
22 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Buckler - Login</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>
|
|
<script>window.onload = login;</script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Buckler Login</h1>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<span>Operate your authenticator device now.</span>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|