-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
29 lines (28 loc) · 951 Bytes
/
Copy path404.html
File metadata and controls
29 lines (28 loc) · 951 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta
http-equiv="Content-Security-Policy"
content="default-src 'none'; style-src 'self'; connect-src 'none'; img-src 'none'; font-src 'none'; object-src 'none'; media-src 'none'; frame-src 'none'; form-action 'none'; base-uri 'none'; manifest-src 'none'; worker-src 'none'"
>
<meta name="referrer" content="no-referrer">
<meta name="robots" content="noindex,nofollow,noarchive">
<title>Not Found - WrapDeck</title>
<link rel="stylesheet" href="privacy.css">
</head>
<body>
<header class="topbar">
<strong>WrapDeck</strong>
<span>Page not found</span>
</header>
<main>
<h1>Page Not Found</h1>
<p>
This WrapDeck page does not exist. Return to the app to start a fresh session.
</p>
<p><a href="index.html">Return to WrapDeck</a></p>
</main>
</body>
</html>