summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 6b7b06cfddc0e3f35793ae264ba34ca6555f554e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>List</title>
<script src="/socket.io/socket.io.js"></script>
<script src="/index.js"></script>
<link rel="stylesheet" href="/index.css">
</head>
<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>