From 4c42918806aa37a5ba67f3150163e05c1d54ce46 Mon Sep 17 00:00:00 2001 From: wbamberg Date: Mon, 3 Jun 2024 11:16:00 -0700 Subject: [PATCH] Use the same table of credential types in landing page --- .../en-us/web/api/credential_management_api/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/en-us/web/api/credential_management_api/index.md b/files/en-us/web/api/credential_management_api/index.md index 0c5e324e59c24fa..6636a6681858bbf 100644 --- a/files/en-us/web/api/credential_management_api/index.md +++ b/files/en-us/web/api/credential_management_api/index.md @@ -24,12 +24,12 @@ The central interface is the {{domxref("CredentialsContainer")}}, which is acces The API supports four different types of credential, which are all represented as subclasses of {{domxref("Credential")}}: -- **Passwords** ({{domxref("PasswordCredential")}}) -- **Federated identity credentials**: {{domxref("IdentityCredential")}} - - > **Note:** The {{domxref("FederatedCredential")}} credential has been superseded by {{domxref("IdentityCredential")}}, but is still part of the specification. -- **One-time password (OTP) credentials** ({{domxref("OTPCredential")}}) -- **Web Authentication assertions** ({{domxref("PublicKeyCredential")}}) +| Type | Interface | +| ----------------------- | ---------------------------------------------------------------------------------- | +| Password | {{domxref("PasswordCredential")}} | +| Federated identity | {{domxref("IdentityCredential")}}, {{domxref("FederatedCredential")}} (deprecated) | +| One-time password (OTP) | {{domxref("OTPCredential")}} | +| Web Authentication | {{domxref("PublicKeyCredential")}} | The guide page [Credential types](/en-US/docs/Web/API/Credential_Management_API/Credential_types) gives an overview of the different credential types and how they are used.