forked from 2factorauth/twofactorauth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
providers.html
88 lines (78 loc) · 3.61 KB
/
providers.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
layout: default
---
{% include header.html page='providers' %}
<div class="main container">
<div class="ui grid">
<div class="column">
<div class="banner ui icon header">
<i class="circular mobile icon"></i>
<h2>Two Factor Auth (2FA) Providers</h2>
<div class="sub header">
List of <a href="https://en.wikipedia.org/wiki/Multi-factor_authentication">2FA</a>
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/jdavis/twofactorauth">GitHub repo</a>.
</div>
</div>
<div id="{{ provider.name }}" class="section">
<table class="ui table celled compact segment">
<thead>
<tr>
<th class="eleven wide"><h2>Provider</h2></th>
<th>SMS</th>
<th>Phone Call</th>
<th>Email</th>
<th>Hardware Token</th>
<th>Software Implementation</th>
</tr>
</thead>
<tbody>
{% assign sorted_providers = site.data.providers.providers | sort: 'name' %}
{% for provider in sorted_providers %}
<tr>
<td class="main positive">
{% if provider.img %}
<img src="/img/placeholder.png" data-src="/img/providers/{{ provider.img }}" class="icon" alt="{{ provider.name }}">
<noscript><img src="/img/providers/{{ provider.img }}" class="icon" alt="{{ provider.name }}"></noscript>
{% endif %}
<a href="{{ provider.url }}">{{ provider.name }}</a>
</td>
<td class="positive icon">
{% if provider.sms %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
<td class="positive icon">
{% if provider.phone %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
<td class="positive icon">
{% if provider.email %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
<td class="positive icon">
{% if provider.hardware %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
<td class="positive icon">
{% if provider.software %}
<i class="checkmark large icon"></i>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div><!-- Section -->
</div><!-- Column -->
</div><!-- UI Grid -->
</div><!-- Main Container -->