guildgate/templates/index.html

13 lines
344 B
HTML
Raw Normal View History

{{ define "index" }}
{{ template "header" .}}
{{if .LoggedIn }}
2020-09-17 16:47:17 -04:00
<p><a href="/token">Get Token</a></p>
2020-09-24 17:12:22 -04:00
<p><a href="/profile/view">Profile</a></p>
2020-11-10 17:58:24 -05:00
<p><a href="/minecraft">Minecraft Account Status</a></p>
{{else}}
<p><a href="/register">Register</a></p>
2020-09-22 18:21:01 -04:00
<p><a href="/passwordreset">Reset Password</a></p>
{{end}}
{{template "footer" .}}
{{ end }}