polycule-connect/polyculeconnect/templates/login.html

15 lines
341 B
HTML
Raw Normal View History

2023-10-14 16:06:02 +00:00
{{ template "header.html" . }}
<div class="theme-panel">
<h2 class="theme-heading">Log in to {{ issuer }} </h2>
<div>
{{ range $c := .Connectors }}
<div>
'{{ $c.ID }}'
<a href="{{ $c.URL }}">{{ $c.Name }} </a>
</div>
{{ end }}
</div>
</div>
{{ template "footer.html" . }}