forked from mystiq/dex
058e72ef50
Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
19 lines
548 B
HTML
19 lines
548 B
HTML
{{ 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 }}" target="_self">
|
|
<button class="dex-btn theme-btn-provider">
|
|
<span class="dex-btn-icon dex-btn-icon--{{ $c.Type }}"></span>
|
|
<span class="dex-btn-text">Log in with {{ $c.Name }}</span>
|
|
</button>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ template "footer.html" . }}
|