add more tooltips and add device authn/authz
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
8ac9042501
commit
aeb24889fd
|
@ -483,7 +483,9 @@ export default function Comparison() {
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className="row-label">Open-source</td>
|
<td className="row-label">
|
||||||
|
Open-source/Source available
|
||||||
|
</td>
|
||||||
<td className="result passed authentik">
|
<td className="result passed authentik">
|
||||||
<Check></Check>
|
<Check></Check>
|
||||||
</td>
|
</td>
|
||||||
|
@ -507,7 +509,14 @@ export default function Comparison() {
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className="row-label">Application Proxy</td>
|
<td
|
||||||
|
className="row-label tooltip"
|
||||||
|
data-tooltip-content={
|
||||||
|
"Reverse proxy to enable an SSO experience for applications that don't support it natively."
|
||||||
|
}
|
||||||
|
>
|
||||||
|
Application Proxy
|
||||||
|
</td>
|
||||||
<td className="result passed authentik">
|
<td className="result passed authentik">
|
||||||
<Check></Check>
|
<Check></Check>
|
||||||
</td>
|
</td>
|
||||||
|
@ -540,6 +549,47 @@ export default function Comparison() {
|
||||||
<Check></Check>
|
<Check></Check>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td
|
||||||
|
className="row-label tooltip"
|
||||||
|
data-tooltip-content={
|
||||||
|
"Reverse proxy to enable an SSO experience for applications that don't support it natively."
|
||||||
|
}
|
||||||
|
>
|
||||||
|
Device authentication/authorization
|
||||||
|
</td>
|
||||||
|
<td className="result failed authentik">
|
||||||
|
<X></X>
|
||||||
|
</td>
|
||||||
|
<td className="result failed">
|
||||||
|
<X></X>
|
||||||
|
</td>
|
||||||
|
<td className="result failed">
|
||||||
|
<X></X>
|
||||||
|
</td>
|
||||||
|
<td className="result warning">
|
||||||
|
<AlertTriangle
|
||||||
|
className="tooltip"
|
||||||
|
data-tooltip-content={
|
||||||
|
tooltipRequiresLicense
|
||||||
|
}
|
||||||
|
></AlertTriangle>
|
||||||
|
</td>
|
||||||
|
<td className="result warning">
|
||||||
|
<AlertTriangle
|
||||||
|
className="tooltip"
|
||||||
|
data-tooltip-content={
|
||||||
|
tooltipAvailableThirdParty
|
||||||
|
}
|
||||||
|
></AlertTriangle>
|
||||||
|
</td>
|
||||||
|
<td className="result failed">
|
||||||
|
<X></X>
|
||||||
|
</td>
|
||||||
|
<td className="result failed">
|
||||||
|
<X></X>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<Tooltip anchorSelect=".tooltip" place="top" />
|
<Tooltip anchorSelect=".tooltip" place="top" />
|
||||||
|
|
Reference in New Issue