-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.97 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/knox.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Knox</title>
</head>
<body>
<div id="app">
<div class="panel">
<a href="/"><img id="knox" class="logo" alt="Knox logo" /></a>
<h1 style="margin: 0">Knox</h1>
<div class="card">The password manager of the future.</div>
<div>
<a href="/register/">
<button id="register" type="button" role="link">Register</button>
</a>
<a href="/login/">
<button id="login" type="button" role="link">Login</button>
</a>
</div>
</div>
<div class="divider"></div>
<div class="panel vstack">
<div class="hstack">
<div class="subcard vstack">
<img id="comms" class="logo" alt="Van icon" />
Network communications are end-to-end encrypted with rotating
session keys.
</div>
<div class="subcard vstack">
<img id="encrypted" class="logo" alt="Magnifying glass icon" />
We can never see your data on our servers. Everything is decrypted
locally.
</div>
</div>
<div class="hstack">
<div class="subcard vstack">
<img id="auth" class="logo" alt="Handshake icon" />
Mutual authentication protects you against malicious servers, while
also deriving a secure session key.
</div>
<div class="subcard vstack">
<img id="signed" class="logo" alt="Signature icon" />
API requests are cryptographically signed and timestamped to protect
against replay attacks.
</div>
</div>
</div>
<div id="footer">Copyright © 2024 Sam Turner</div>
</div>
<script type="module" src="./src/client/main.js"></script>
</body>
</html>