mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
566 B
19 lines
566 B
{{ template "header.html" . }} |
|
|
|
<div class="theme-panel"> |
|
<h2 class="theme-heading">Log in to {{ issuer }} </h2> |
|
<div> |
|
{{ range $c := .Connectors }} |
|
<div class="theme-form-row"> |
|
<a href="{{ $c.URL }}?req={{ $.AuthReqID }}" target="_self"> |
|
<button class="dex-btn dex-btn-provider"> |
|
<span class="dex-btn-icon dex-btn-icon--{{ $c.ID }}"></span> |
|
<span class="dex-btn-text">Log in with {{ $c.Name }}</span> |
|
</button> |
|
</a> |
|
</div> |
|
{{ end }} |
|
</div> |
|
</div> |
|
|
|
{{ template "footer.html" . }}
|
|
|