this repo has no description
1
2<!doctype html>
3<html lang="en">
4<head>
5 <meta charset="utf-8">
6 <meta name="referrer" content="origin-when-cross-origin">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.red.min.css">
9 <title>ATProto User Intents Demo</title>
10</head>
11<body>
12<header>
13 <hgroup>
14 <h1>ATProto User Intents Demo</h1>
15 </hgroup>
16 <nav>
17 <ul>
18 {{ if . }}
19 <li><a href="/intents">Configure Intents</a>
20 <li><a href="/oauth/logout">Logout</a>
21 {{ else }}
22 <li><a href="/oauth/login">Login</a>
23 {{ end }}
24 <li><a href="https://tangled.org/bnewbold.net/user-intents">Code</a>
25 </ul>
26 </nav>
27 {{ if . }}
28 <p>Hello <span style="font-family: monospace; font-weight: bold;">{{ .DID }}</span></p>
29 {{ end }}
30</header>
31<main>
32 <section class="content">
33 {{ template "content" . }}
34 </section>
35</main>
36</body>
37</html>