go-bouquins/templates/provider.html

12 lines
305 B
HTML
Raw Normal View History

2017-09-08 18:29:01 +00:00
{{ template "header.html" . }}
<div class="container" id="provider">
<p>Veuillez sélectionner un mode d'authentification:<p>
<ul>
2017-09-09 07:16:46 +00:00
{{ range .Providers }}
<!-- TODO icon -->
<li><a href="/login?provider={{ .Name }}">{{ .Label }}</a></li>
{{ end }}
2017-09-08 18:29:01 +00:00
</ul>
</div>
{{ template "footer.html" . }}