go-bouquins/templates/provider.html

12 lines
305 B
HTML
Raw Normal View History

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