├── resources
├── views
│ ├── .gitkeep
│ ├── livewire
│ │ ├── webauthn-redirect-to-login-button.blade.php
│ │ ├── webauthn-register-button.blade.php
│ │ └── webauthn-login.blade.php
│ ├── filament
│ │ └── widgets
│ │ │ └── webauthn-register.blade.php
│ └── components
│ │ └── login-form-extension.blade.php
├── assets
│ ├── dist
│ │ ├── mix-manifest.json
│ │ └── filament-webauthn.js
│ └── js
│ │ └── filament-webauthn.js
└── lang
│ └── en
│ └── filament-webauthn.php
├── images
├── login.png
├── widget.png
└── reditect-to-login-page.png
├── CHANGELOG.md
├── src
├── FilamentWebauthn.php
├── Exceptions
│ ├── LoginException.php
│ └── RegistrationException.php
├── Auth
│ ├── UserInterface.php
│ ├── RegistratorInterface.php
│ ├── AuthenticatorInterface.php
│ ├── User.php
│ ├── Authenticator.php
│ └── Registrator.php
├── Repositories
│ ├── UserRepositoryInterface.php
│ ├── UserRepository.php
│ └── PublicKeyRepository.php
├── Facades
│ └── FilamentWebauthn.php
├── Widgets
│ └── WebauthnRegisterWidget.php
├── Models
│ └── WebauthnKey.php
├── Http
│ └── Livewire
│ │ ├── WebauthnRedirectToLoginButton.php
│ │ ├── WebauthnRegisterButton.php
│ │ └── WebauthnLogin.php
├── FilamentWebauthnServiceProvider.php
└── Factories
│ └── WebauthnFactory.php
├── package.json
├── database
├── factories
│ └── ModelFactory.php
└── migrations
│ └── create_filament_webauthn_table.php.stub
├── routes
└── web.php
├── webpack.mix.js
├── config
└── filament-webauthn.php
├── LICENSE.md
├── composer.json
└── README.md
/resources/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/images/login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/moontechs/filament-webauthn/HEAD/images/login.png
--------------------------------------------------------------------------------
/images/widget.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/moontechs/filament-webauthn/HEAD/images/widget.png
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | All notable changes to `filament-webauthn` will be documented in this file.
4 |
--------------------------------------------------------------------------------
/src/FilamentWebauthn.php:
--------------------------------------------------------------------------------
1 |
7 | {{ __('filament-webauthn::filament-webauthn.login-button-text') }}
8 |
9 |
--------------------------------------------------------------------------------
/resources/views/filament/widgets/webauthn-register.blade.php:
--------------------------------------------------------------------------------
1 |
4 | {{ __('filament-webauthn::filament-webauthn.widget.title') }}
5 |
6 |
7 |
4 | {{ __('filament-webauthn::filament-webauthn.or') }} 5 |
6 |