Files
panel/resources/views/passkeys/livewire/partials/createScript.blade.php
JoanFo a9cb16e042 Passkeys (#2192)
Co-authored-by: Lance Pioch <git@lance.sh>
2026-06-22 23:59:07 -04:00

13 lines
311 B
PHP

@script
<script>
window.onClickCreatePasskey = async function () {
try {
await window.registerPasskey(@this.name);
@this.call('onPasskeyRegistered');
} catch (error) {
@this.call('registrationFailed', error.message);
}
};
</script>
@endscript