-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaegis_webui.html
More file actions
80 lines (74 loc) · 2.89 KB
/
Copy pathaegis_webui.html
File metadata and controls
80 lines (74 loc) · 2.89 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AEGIS</title>
<link rel="stylesheet" href="/aegis.css">
</head>
<body>
<aside class="side">
<div class="brand"><h1>AEG<span>I</span>S</h1>
<div class="tag">post-quantum · metadata-resistant</div></div>
<div class="me">
<div class="row">
<div class="dot-id"></div>
<div class="min0">
<div class="name" id="me-name">…</div>
</div>
</div>
<div class="aid" id="me-aid" title="click to copy your AEGIS id">…</div>
</div>
<div class="peers-h">Contacts</div>
<div class="peers" id="peers"></div>
</aside>
<main class="main">
<header class="chead vhidden" id="chead">
<div class="who">
<div class="cn" id="c-name">—</div>
<div class="cid" id="c-id"></div>
</div>
<div class="spacer"></div>
<div class="shield" id="shield" title="identity verification state"></div>
<button class="btn ghost" id="verify-btn">Verify</button>
<div class="cover" title="You emit at a constant rate whether or not you're talking, so an observer can't tell when a real message goes out.">
cover<span class="pulse"><i></i><i></i><i></i><i></i><i></i><i></i></span>
</div>
</header>
<section class="stream" id="stream">
<div class="welcome" id="welcome">
<div class="lock">⬡</div>
<h2>Your channel is a space to think</h2>
<p>Pick a contact to start an end-to-end encrypted conversation. The first
message runs a deniable post-quantum handshake; everything after rides a
hybrid ratchet and travels as fixed-size onion packets through the mix
network. Nobody — not even a relay — learns who is talking to whom.</p>
</div>
</section>
<div class="compose hidden" id="compose">
<input id="input" placeholder="Write a message…" autocomplete="off" maxlength="4000">
<button class="send" id="send" disabled>Send</button>
</div>
<div class="foot">
<span><b>X25519 + ML-KEM-768</b> key exchange</span>
<span><b>Ed25519 + ML-DSA-65</b> signatures</span>
<span id="status"><b>engine</b> connecting…</span>
<span class="build-marker">loaded __BUILD__</span>
</div>
</main>
<div class="scrim" id="scrim">
<div class="modal">
<h3>Safety number</h3>
<p>Compare this number with <b id="sn-peer"></b> over a channel you trust
(in person, a phone call). If both of you see the same number, no one is
intercepting your identity keys.</p>
<div class="sn" id="sn-value">…</div>
<div class="actions">
<button class="btn ghost" id="sn-close">Close</button>
<button class="btn" id="sn-mark">Mark verified</button>
</div>
</div>
</div>
<script src="/aegis.js"></script>
</body>
</html>