fickit: Add dexidp on frontend

This commit is contained in:
nemunaire 2021-09-05 12:39:36 +02:00
commit 75d288000f
7 changed files with 362 additions and 2 deletions

View file

@ -0,0 +1,21 @@
{{ template "header.html" . }}
<div class="theme-panel">
<h2 class="theme-heading">
Bienvenue au challenge Forensic&nbsp;!
</h2>
<div>
{{ range $c := .Connectors }}
<div class="theme-form-row">
<a href="{{ $c.URL }}" target="_self">
<button class="dex-btn theme-btn-provider">
<span class="dex-btn-icon dex-btn-icon--{{ $c.Type }}"></span>
<span class="dex-btn-text">Log in with {{ $c.Name }}</span>
</button>
</a>
</div>
{{ end }}
</div>
</div>
{{ template "footer.html" . }}