goweb-oidc/cmd/server/template/layouts/profile.html.tmpl

15 lines
386 B
Cheetah

{{define "title"}}Profile | OIDC Tester{{end}}
{{define "body"}}
<section class="home is-fullheight section">
<div class="container">
{{template "header" .}}
<h2 class="is-size-4">IDToken</h2>
<pre>{{ .JSONIDToken }}</pre>
<h2 class="is-size-4">Claims</h2>
<pre>{{ .JSONClaims }}</pre>
{{template "footer" .}}
</div>
</section>
{{end}}
{{template "base" .}}