mirror of https://github.com/authelia/authelia.git
29 lines
1.7 KiB
HTML
29 lines
1.7 KiB
HTML
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" class="text-center">Application</th>
|
|
<th colspan="3" class="text-center border-end">Algorithm</th>
|
|
<th colspan="2" class="text-center">Digits</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="text-center">SHA1</th>
|
|
<th class="text-center">SHA256</th>
|
|
<th class="text-center border-end">SHA512</th>
|
|
<th class="text-center">6</th>
|
|
<th class="text-center">8</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{- range $.Site.Data.support.totp }}
|
|
<tr>
|
|
<td class="text-center"><a href="{{ .url }}" target="_blank">{{ .name }}</a></td>
|
|
<td class="text-center"><i class="{{ cond .algorithms.SHA1 "icon-support-full" "icon-support-none" }}" data-toggle="tooltip" data-placement="top" title="{{ cond .algorithms.SHA1 "" "Not " }}Supported"></i></td>
|
|
<td class="text-center"><i class="{{ cond .algorithms.SHA256 "icon-support-full" "icon-support-none" }}" data-toggle="tooltip" data-placement="top" title="{{ cond .algorithms.SHA256 "" "Not " }}Supported"></i></td>
|
|
<td class="text-center border-end"><i class="{{ cond .algorithms.SHA512 "icon-support-full" "icon-support-none" }}" data-toggle="tooltip" data-placement="top" title="{{ cond .algorithms.SHA512 "" "Not " }}Supported"></i></td>
|
|
<td class="text-center"><i class="{{ cond .digits.six "icon-support-full" "icon-support-none" }}" data-toggle="tooltip" data-placement="top" title="{{ cond .digits.six "" "Not " }}Supported"></i></td>
|
|
<td class="text-center"><i class="{{ cond .digits.eight "icon-support-full" "icon-support-none" }}" data-toggle="tooltip" data-placement="top" title="{{ cond .digits.eight "" "Not " }}Supported"></i></td>
|
|
</tr>
|
|
{{- end }}
|
|
</tbody>
|
|
</table>
|