dex/web/templates/login.html

20 lines
548 B
HTML
Raw Normal View History

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">
<a href="{{ $c.URL }}" target="_self">
2016-12-02 03:36:08 +05:30
<button class="dex-btn theme-btn-provider">
<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" . }}