add more tooltips and add device authn/authz

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-11-08 15:39:48 +01:00 committed by Jens L
parent 8ac9042501
commit aeb24889fd
1 changed files with 52 additions and 2 deletions

View File

@ -483,7 +483,9 @@ export default function Comparison() {
</td>
</tr>
<tr>
<td className="row-label">Open-source</td>
<td className="row-label">
Open-source/Source available
</td>
<td className="result passed authentik">
<Check></Check>
</td>
@ -507,7 +509,14 @@ export default function Comparison() {
</td>
</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">
<Check></Check>
</td>
@ -540,6 +549,47 @@ export default function Comparison() {
<Check></Check>
</td>
</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>
</table>
<Tooltip anchorSelect=".tooltip" place="top" />