diff options
author | Tom Smeding <t.j.smeding@uu.nl> | 2022-08-29 10:45:26 +0200 |
---|---|---|
committer | Tom Smeding <t.j.smeding@uu.nl> | 2022-08-29 10:45:26 +0200 |
commit | 0116c966d3d6ea914ec4b9e3e5ec6e405d37f22d (patch) | |
tree | 27f515e059e4dbe16615eaf846a0ddb95232a5fd /static/index.html | |
parent | a3bdfe58867d57b39cf139fe7134c020fc9dcb44 (diff) |
login
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> |