this repo has no description
1<!doctype html>
2<html>
3 <p>welcome to atproto oauth golang tester!</p>
4 {{ if .Did }}
5 <p>logged in as {{ .Did }}</p>
6 {{ end }}
7 <ul>
8 {{ if .Did }}
9 <li>
10 <a href="/make-post">Make a Post</a>
11 </li>
12 <li>
13 <a href="/logout">Logout</a>
14 </li>
15 {{ else }}
16 <li>
17 <a href="/login">Login</a>
18 </li>
19 {{ end }}
20 </ul>
21</html>