hmn/src/templates/src/discordtest.html

19 lines
440 B
HTML
Raw Permalink Normal View History

2021-08-16 04:40:56 +00:00
{{ template "base.html" . }}
{{ define "content" }}
Wow a discord
<div>
{{ with .DiscordUser }}
2021-08-16 05:07:17 +00:00
<div>
<img src="{{ .Avatar }}">
{{ .Username }}#{{ .Discriminator }}
</div>
<form action="{{ $.UnlinkURL }}" method="POST">
<button>Unlink Account</button>
</form>
2021-08-16 04:40:56 +00:00
{{ else }}
<a href="{{ $.AuthorizeURL }}">Link your account</a>
{{ end }}
</div>
{{ end }}