forked from 2factorauth/twofactorauth
-
Notifications
You must be signed in to change notification settings - Fork 112
/
dongles.html
65 lines (58 loc) · 2.46 KB
/
dongles.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
layout: default
---
{% include header.html page='dongles' %}
<div class="banner ui center aligned icon header">
<img src="{{ site.uri }}/img/usb_stick.png" class="icon" alt="USB Stick">
<h2>Two Factor Auth (2FA) Dongles</h2>
<div class="sub header">
List of <a href="https://en.wikipedia.org/wiki/Multi-factor_authentication">2FA</a>
dongle providers and the platforms they support.
</div>
<div class="sub header">
Also see the list of <a href="/">sites offering 2FA</a>.
</div>
<div class="sub header">
Add your own favorite by submitting a pull request on the
<a href="https://github.com/nitrokey/dongleauth">GitHub repo</a>.
</div>
</div>
<div class="ui main container">
<div id="{{ provider.name }}" class="section">
<table class="ui table celled content-wrapper">
<thead>
<tr>
<th class="single line four wide"><h2>Dongle</h2></th>
<th class="two wide">One Time Passwords (OTP)</th>
<th class="two wide">Universal 2nd Factor (U2F)</th>
</tr>
</thead>
<tbody>
{% assign sorted_providers = site.data.providers.providers | sort: 'name' %}
{% for provider in sorted_providers %}
{% if provider.u2f or provider.otp %}
<tr>
<td class="main positive">
{% if provider.img %}
<img src="{{ site.uri }}/img/placeholder.png" data-src="{{ site.uri }}/img/providers/{{ provider.img }}" class="icon" alt="{{ provider.name }}">
<noscript><img src="{{ site.uri }}/img/providers/{{ provider.img }}" class="icon" alt="{{ provider.name }}"></noscript>
{% endif %}
<a class="{{ provider.class }}" href="{{ provider.url }}">{{ provider.name }}</a>
</td>
<td class="positive icon">
{% if provider.otp %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
<td class="positive icon">
{% if provider.u2f %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
</div>