-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
42 lines (37 loc) · 1.21 KB
/
Copy path404.html
File metadata and controls
42 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - attest</title>
<link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="/styles/style.css">
</head>
<body>
<div class="shell">
<nav>
<a href="/" class="logo">attest</a>
<div class="nav-links">
<a href="/">dashboard</a>
<a href="/agents/">agents</a>
<a href="/humans/">humans</a>
<a href="/verify/">verify</a>
</div>
</nav>
<div style="text-align: center; padding: 80px 0;">
<h1 style="font-size: 72px; color: var(--accent); margin-bottom: 8px;">404</h1>
<p class="dim">this page does not exist</p>
<div class="btn-row" style="justify-content: center; margin-top: 24px;">
<a href="/" class="btn">dashboard</a>
<a href="/agents/" class="btn">agents</a>
<a href="/humans/" class="btn">humans</a>
</div>
</div>
<div class="footer">
<span>attest v3.0 · MIT license · <a href="/s/y52ru5lq">attested</a></span>
<span><a href="https://github.com/97115104/attest">source</a></span>
</div>
</div>
<script src="/scripts/field.js"></script>
</body>
</html>