go-bouquins/templates/provider.html
2017-09-09 09:16:46 +02:00

12 lines
305 B
HTML

{{ template "header.html" . }}
<div class="container" id="provider">
<p>Veuillez sélectionner un mode d'authentification:<p>
<ul>
{{ range .Providers }}
<!-- TODO icon -->
<li><a href="/login?provider={{ .Name }}">{{ .Label }}</a></li>
{{ end }}
</ul>
</div>
{{ template "footer.html" . }}