diff options
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/static/index.html b/static/index.html index 67ba2f8..6b7b06c 100644 --- a/static/index.html +++ b/static/index.html @@ -7,7 +7,13 @@ <script src="/index.js"></script> <link rel="stylesheet" href="/index.css"> </head> -<body> +<body class="unauth"> + <div id="login"> + <input type="password" id="password" placeholder="cheese" onkeypress="doPasswordKeypress(event)"> + <input type="button" id="loginbtn" onclick="doLogin()" value="Login" disabled=""> + <br> + <div id="unauthlog"></div> + </div> <div id="list"></div> </body> </html> |