blob: 15b10ff8e70fe6f24ccf78777659c85eacca2064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ template "base.html" . }}
{{ define "content" }}
<p>
<a href="{{ .BasePath }}/admin/users">Users</a>
</p>
<p>
<a href="{{ .BasePath }}/admin/games">Games</a>
</p>
<form method="post" action="{{ .BasePath }}/logout">
<button type="submit">Logout</button>
</form>
{{ end }}
|