├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── composer.json ├── config └── filament-password-less.php ├── resources ├── lang │ ├── en │ │ ├── filament-password-less.php │ │ └── validation.php │ ├── fr │ │ ├── filament-password-less.php │ │ └── validation.php │ └── hy │ │ ├── filament-password-less.php │ │ └── validation.php └── views │ ├── .gitkeep │ ├── confirm.blade.php │ └── login.blade.php ├── routes └── web.php └── src ├── EventServiceProvider.php ├── Events └── PassPhraseSent.php ├── Facades └── FilamentPasswordLess.php ├── FilamentPasswordLess.php ├── FilamentPasswordLessServiceProvider.php ├── Http ├── Controllers │ └── MagicLinkController.php ├── Livewire │ └── Auth │ │ ├── Confirm.php │ │ └── Login.php └── Middleware │ └── PassPhraseGuard.php ├── Listeners └── RequirePassPhrase.php ├── Notifications ├── AdvisePassPhrase.php └── AdvisePassPhraseMagicLink.php ├── Traits └── PasswordLessLogin.php └── Utility ├── PassPhrase.php └── wordlist.txt /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/composer.json -------------------------------------------------------------------------------- /config/filament-password-less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/config/filament-password-less.php -------------------------------------------------------------------------------- /resources/lang/en/filament-password-less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/en/filament-password-less.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/fr/filament-password-less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/fr/filament-password-less.php -------------------------------------------------------------------------------- /resources/lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/fr/validation.php -------------------------------------------------------------------------------- /resources/lang/hy/filament-password-less.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/hy/filament-password-less.php -------------------------------------------------------------------------------- /resources/lang/hy/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/lang/hy/validation.php -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/views/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/resources/views/login.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Events/PassPhraseSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Events/PassPhraseSent.php -------------------------------------------------------------------------------- /src/Facades/FilamentPasswordLess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Facades/FilamentPasswordLess.php -------------------------------------------------------------------------------- /src/FilamentPasswordLess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/FilamentPasswordLess.php -------------------------------------------------------------------------------- /src/FilamentPasswordLessServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/FilamentPasswordLessServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Controllers/MagicLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Http/Controllers/MagicLinkController.php -------------------------------------------------------------------------------- /src/Http/Livewire/Auth/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Http/Livewire/Auth/Confirm.php -------------------------------------------------------------------------------- /src/Http/Livewire/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Http/Livewire/Auth/Login.php -------------------------------------------------------------------------------- /src/Http/Middleware/PassPhraseGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Http/Middleware/PassPhraseGuard.php -------------------------------------------------------------------------------- /src/Listeners/RequirePassPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Listeners/RequirePassPhrase.php -------------------------------------------------------------------------------- /src/Notifications/AdvisePassPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Notifications/AdvisePassPhrase.php -------------------------------------------------------------------------------- /src/Notifications/AdvisePassPhraseMagicLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Notifications/AdvisePassPhraseMagicLink.php -------------------------------------------------------------------------------- /src/Traits/PasswordLessLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Traits/PasswordLessLogin.php -------------------------------------------------------------------------------- /src/Utility/PassPhrase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Utility/PassPhrase.php -------------------------------------------------------------------------------- /src/Utility/wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtMin96/filament-password-less/HEAD/src/Utility/wordlist.txt --------------------------------------------------------------------------------