-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
28 lines (23 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vernam</title>
<meta name="description" content="Near Perfect Secrecy Messenger Web App. Uses a pseudo one-time pad to encrypt and decrypt messages. Key exchange via QR code scanning of randomly generated bytes.">
<base href="/">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta property="og:image" content="https://vernam.xyz/img/favicon-256x256-rounded.png">
<link rel="shortcut icon" type="image/png" size="32x32" href="/img/favicon-32x32.png">
<link rel="apple-touch-icon" size="256x256" href="/img/favicon-256x256.png">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>