mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-15 21:48:08 +03:00
13 lines
311 B
PHP
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
|