Revert "Merge pull request #714 from amrutac/refactor-css"

This reverts commit 4d88eabb50, reversing
changes made to b38d355202.
This commit is contained in:
Eric Chiang
2016-12-01 13:18:32 -08:00
parent 4d88eabb50
commit 5e61d5fe83
15 changed files with 270 additions and 422 deletions

View File

@@ -1,19 +1,22 @@
{{ template "header.html" . }}
<div class="theme-panel">
<h2 class="theme-heading">Log in to {{ issuer }} </h2>
<div class="panel">
<h2 class="heading">Log in to {{ issuer }} </h2>
<div>
{{ range $c := .Connectors }}
<div class="theme-form-row">
<div class="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 class="btn btn-provider">
<span class="btn-icon btn-icon-{{ $c.ID }}"></span>
<span class="btn-text">Log in with {{ $c.Name }}</span>
</button>
</a>
</div>
{{ end }}
</div>
</div>
{{ template "footer.html" . }}