-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (23 loc) · 864 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<title>Journal Viewer</title>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<div id="login">
<div id="login-alert">You entered the wrong password</div>
<div id="login-content">
<h1>You need a password to continue</h1>
<input id="login-password" type="password" placeholder="password">
<button id="login-button" type="button">Continue</button>
</div>
</div>
<link rel="stylesheet" type="text/css" href="css/login.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/js-sha1/0.6.0/sha1.min.js"></script>
<script src="js/login.js"></script>
</body>
</html>