24 lines
770 B
HTML
24 lines
770 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Juice - Login</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.">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div id="devices">
|
|
<div class="device">
|
|
<h1>Login</h1>
|
|
<p><label for="username">Username</label> <input id="username" type="text" minlength="3" maxlength="64" required>
|
|
<p><input type="button" value="Login" onclick="login()">
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|