Customize the authentication experience for your brand
// Using the Authiqa API fetch('https://api.authiqa.com/auth/update-organization', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Public-Key': 'YOUR_PUBLIC_KEY' }, body: JSON.stringify({ organizationName: 'Your Company', organizationUrl: 'https://yourcompany.com' }) });
const widget = new AuthiqaWidget({ publicKey: 'YOUR_PUBLIC_KEY', container: 'authiqa', theme: 'light', // or 'dark' mode: 'popup' // or 'redirect' });
<!DOCTYPE html> <html> <head> <title>Login - Your Company</title> </head> <body> <div id="authiqa"></div> <script src="https://widget.authiqa.com" defer data-public-key="YOUR_PUBLIC_KEY" action="signin" ></script> </body> </html>