2016-08-26 01:33:41 +05:30
|
|
|
{{ template "header.html" . }}
|
|
|
|
|
2016-12-02 01:48:12 +05:30
|
|
|
<div class="theme-panel">
|
|
|
|
<h2 class="theme-heading">Log in to {{ issuer }} </h2>
|
2016-08-26 01:33:41 +05:30
|
|
|
<div>
|
|
|
|
{{ range $c := .Connectors }}
|
2016-12-02 01:48:12 +05:30
|
|
|
<div class="theme-form-row">
|
2017-02-02 23:59:57 +05:30
|
|
|
<a href="{{ $c.URL }}" target="_self">
|
2016-12-02 03:36:08 +05:30
|
|
|
<button class="dex-btn theme-btn-provider">
|
2019-10-30 05:03:52 +05:30
|
|
|
<span class="dex-btn-icon dex-btn-icon--{{ $c.Type }}"></span>
|
2016-12-02 01:48:12 +05:30
|
|
|
<span class="dex-btn-text">Log in with {{ $c.Name }}</span>
|
2016-08-26 01:33:41 +05:30
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ template "footer.html" . }}
|