github.com/chenbh/concourse/v6@v6.4.2/skymarshal/web/templates/login.html (about) 1 {{ template "header.html" . }} 2 3 <div class="theme-panel"> 4 <h2 class="theme-heading">login to {{ issuer }} </h2> 5 <div> 6 {{ range $c := .Connectors }} 7 <div class="theme-form-row"> 8 <a href="{{ $c.URL }}" target="_self"> 9 <button class="dex-btn theme-btn-provider"> 10 <span class="dex-btn-icon dex-btn-icon--{{ $c.ID }}"></span> 11 <span class="dex-btn-text">{{ $c.Name }}</span> 12 </button> 13 </a> 14 </div> 15 {{ end }} 16 </div> 17 </div> 18 19 {{ template "footer.html" . }}