-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 953 Bytes
/
index.html
File metadata and controls
22 lines (21 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Enable WebAuthn for biometric authentication -->
<meta http-equiv="Permissions-Policy" content="publickey-credentials-create=*, publickey-credentials-get=*" />
<!-- Writer API Origin Trial Token - Replace with your actual token from https://developer.chrome.com/origintrials/#/view_trial/-8779204523605360639 -->
<meta http-equiv="origin-trial" content="YOUR_WRITER_API_TOKEN_HERE">
<title>Darc</title>
<link rel="manifest" href="/.well-known/manifest.webmanifest" />
<link rel="stylesheet" href="/app/main.css" />
<script type="module" src="/app/main.js"></script>
</head>
<body>
<div id="app"></div>
<div id="backgroundFrames" style="display: none;">
<div id="anchorFrame"></div>
</div>
</body>
</html>