Demonstrate how to use FIDO2 UI SDK to manage devices in a popup window
Click the button below to open the device manager modal:
Simplest integration:
Fido2UIManager.renderDeviceManager({
container: '#device-container',
mode: 'modal',
serverUrl: SERVER_URL
});
With theme customization:
Fido2UIManager.renderDeviceManager({
container: '#device-container',
mode: 'modal',
serverUrl: SERVER_URL,
theme: {
primaryColor: '#ce59d9',
backgroundColor: '#f8f9fa'
},
language: 'zh-CN'
});