Demonstrate how to use FIDO2 UI SDK to manage devices in a standalone page
Standalone page mode renders a complete device management interface on the current page, suitable for scenarios requiring a dedicated device management page.
Standalone page mode will replace the current page content. If your page already has a complete layout (like login.html or devices.html), it is recommended to use modal mode.
Simplest standalone integration:
Fido2UIManager.renderDeviceManager({
mode: 'standalone',
serverUrl: SERVER_URL
});
With theme customization:
Fido2UIManager.renderDeviceManager({
mode: 'standalone',
serverUrl: SERVER_URL,
theme: {
logo: 'path/to/logo.png',
primaryColor: '#f5576c',
backgroundColor: '#ffffff'
},
language: 'zh-CN'
});
Click the buttons below to experience standalone page mode:
After clicking the button, the page will be replaced with the device management interface. To return to this demo page, please refresh the browser.
Standalone page mode is suitable for the following scenarios: