🔐 Secure Booking with Passkey

Authenticate with any valid passkey to continue with your booking

✨ Integration takes just 10 lines of code!

🚀 Complete Integration Code:

// 1. Initialize the SDK
const passkeySDK = new PasskeySDK({
  apiUrl: 'https://api.authenticid.ai'
});

// 2. Authenticate with ANY valid passkey - no username needed!
try {
  await passkeySDK.login(); // No username required!
  window.location.href = '/dashboard';
} catch (error) {
  console.error('Auth failed:', error);
}

// That's it! 🎉
🎯 Key Features:
  • No username required - Works with ANY passkey
  • No complex WebAuthn code
  • No credential management
  • Cross-platform support
  • Production ready
Without AID SDK:

❌ 200+ lines of WebAuthn code

❌ Complex credential management

❌ Browser compatibility issues

With AID SDK:

✅ Just 10 lines of code

✅ Works with any passkey

✅ No username needed