This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/web/templates/login.html

20 lines
548 B
HTML
Raw Normal View History

2016-08-25 20:03:41 +00:00
{{ template "header.html" . }}
2016-12-01 20:18:12 +00:00
<div class="theme-panel">
<h2 class="theme-heading">Log in to {{ issuer }} </h2>
2016-08-25 20:03:41 +00:00
<div>
{{ range $c := .Connectors }}
2016-12-01 20:18:12 +00:00
<div class="theme-form-row">
<a href="{{ $c.URL }}" target="_self">
2016-12-01 22:06:08 +00:00
<button class="dex-btn theme-btn-provider">
<span class="dex-btn-icon dex-btn-icon--{{ $c.Type }}"></span>
2016-12-01 20:18:12 +00:00
<span class="dex-btn-text">Log in with {{ $c.Name }}</span>
2016-08-25 20:03:41 +00:00
</button>
</a>
</div>
{{ end }}
</div>
</div>
{{ template "footer.html" . }}