├── LICENSE.md ├── README.md ├── composer.json └── src ├── AbstractServiceProvider.php ├── Adapters ├── SessionAdapter.php └── TokenAdapter.php ├── AuthManager.php ├── AuthServiceProvider.php ├── Authorization ├── Events │ └── GateEvaluated.php ├── Gate.php ├── HandlesAuthorization.php └── Response.php ├── Collectors └── AuthCollector.php ├── Commands ├── AuthClearResetCommand.php └── AuthPublishCommand.php ├── Config ├── Auth.php ├── Hashing.php └── Services.php ├── Contracts ├── AuthFactoryInterface.php ├── AuthenticationBasicInterface.php ├── AuthenticationInterface.php ├── AuthenticatorInterface.php ├── AuthorizableInterface.php ├── GateInterface.php ├── HasAccessTokensInterface.php ├── HasherInterface.php ├── PasswordBrokerFactoryInterface.php ├── PasswordBrokerInterface.php ├── PasswordResetRepositoryInterface.php ├── ResetPasswordInterface.php ├── UserProviderInterface.php └── VerifyEmailInterface.php ├── Controllers ├── Auth │ ├── AuthenticatedSessionController.php │ ├── ConfirmablePasswordController.php │ ├── EmailVerificationNotificationController.php │ ├── EmailVerificationPromptController.php │ ├── NewPasswordController.php │ ├── PasswordResetLinkController.php │ ├── RegisteredUserController.php │ └── VerifyEmailController.php └── Home.php ├── CookieRecaller.php ├── Database └── Migrations │ └── 2020-12-28-223112_create_auth_tables.php ├── Entities ├── AccessToken.php └── User.php ├── Exceptions ├── AuthenticationException.php └── AuthorizationException.php ├── Facades ├── Auth.php ├── Gate.php ├── Hash.php ├── Passwords.php └── RateLimiter.php ├── Filters ├── AuthenticationBasicFilter.php ├── AuthenticationFilter.php ├── AuthorizeFilter.php ├── ConfirmPasswordFilter.php ├── EmailVerifiedFilter.php ├── RedirectAuthenticatedFilter.php └── ThrottleFilter.php ├── Helpers ├── Arr.php ├── Str.php └── auth_helper.php ├── Language └── en │ ├── Auth.php │ └── Passwords.php ├── Models ├── AccessTokenModel.php └── UserModel.php ├── Notifications ├── ResetPasswordNotification.php └── VerificationNotification.php ├── Passwords ├── Hash │ ├── AbstractHasher.php │ ├── AbstractManager.php │ ├── Argon2IdHasher.php │ ├── ArgonHasher.php │ ├── BcryptHasher.php │ └── HashManager.php ├── PasswordBroker.php ├── PasswordBrokerManager.php ├── PasswordResetRepository.php └── RateLimiter.php ├── Traits ├── AuthenticatableTrait.php ├── AuthorizableTrait.php ├── AuthorizesRequestsTrait.php ├── CanResetPasswordTrait.php ├── GuardHelperTrait.php ├── HasAccessTokensTrait.php ├── InteractsWithAuthentication.php ├── InteractsWithTimeTrait.php ├── MustVerifyEmailTrait.php └── UserProviderTrait.php ├── UserDatabase.php └── Views ├── Auth ├── confirm_password.php ├── forgot_password.php ├── layout.php ├── login.php ├── messages.php ├── register.php ├── reset_password.php └── verify_email.php ├── Email ├── layout.php ├── reset_email.php └── verify_email.php ├── dashboard.php └── welcome_message.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/AbstractServiceProvider.php -------------------------------------------------------------------------------- /src/Adapters/SessionAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Adapters/SessionAdapter.php -------------------------------------------------------------------------------- /src/Adapters/TokenAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Adapters/TokenAdapter.php -------------------------------------------------------------------------------- /src/AuthManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/AuthManager.php -------------------------------------------------------------------------------- /src/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Authorization/Events/GateEvaluated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Authorization/Events/GateEvaluated.php -------------------------------------------------------------------------------- /src/Authorization/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Authorization/Gate.php -------------------------------------------------------------------------------- /src/Authorization/HandlesAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Authorization/HandlesAuthorization.php -------------------------------------------------------------------------------- /src/Authorization/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Authorization/Response.php -------------------------------------------------------------------------------- /src/Collectors/AuthCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Collectors/AuthCollector.php -------------------------------------------------------------------------------- /src/Commands/AuthClearResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Commands/AuthClearResetCommand.php -------------------------------------------------------------------------------- /src/Commands/AuthPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Commands/AuthPublishCommand.php -------------------------------------------------------------------------------- /src/Config/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Config/Auth.php -------------------------------------------------------------------------------- /src/Config/Hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Config/Hashing.php -------------------------------------------------------------------------------- /src/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Config/Services.php -------------------------------------------------------------------------------- /src/Contracts/AuthFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/AuthFactoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/AuthenticationBasicInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/AuthenticationBasicInterface.php -------------------------------------------------------------------------------- /src/Contracts/AuthenticationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/AuthenticationInterface.php -------------------------------------------------------------------------------- /src/Contracts/AuthenticatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/AuthenticatorInterface.php -------------------------------------------------------------------------------- /src/Contracts/AuthorizableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/AuthorizableInterface.php -------------------------------------------------------------------------------- /src/Contracts/GateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/GateInterface.php -------------------------------------------------------------------------------- /src/Contracts/HasAccessTokensInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/HasAccessTokensInterface.php -------------------------------------------------------------------------------- /src/Contracts/HasherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/HasherInterface.php -------------------------------------------------------------------------------- /src/Contracts/PasswordBrokerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/PasswordBrokerFactoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/PasswordBrokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/PasswordBrokerInterface.php -------------------------------------------------------------------------------- /src/Contracts/PasswordResetRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/PasswordResetRepositoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/ResetPasswordInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/ResetPasswordInterface.php -------------------------------------------------------------------------------- /src/Contracts/UserProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/UserProviderInterface.php -------------------------------------------------------------------------------- /src/Contracts/VerifyEmailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Contracts/VerifyEmailInterface.php -------------------------------------------------------------------------------- /src/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /src/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /src/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Controllers/Home.php -------------------------------------------------------------------------------- /src/CookieRecaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/CookieRecaller.php -------------------------------------------------------------------------------- /src/Database/Migrations/2020-12-28-223112_create_auth_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Database/Migrations/2020-12-28-223112_create_auth_tables.php -------------------------------------------------------------------------------- /src/Entities/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Entities/AccessToken.php -------------------------------------------------------------------------------- /src/Entities/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Entities/User.php -------------------------------------------------------------------------------- /src/Exceptions/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Exceptions/AuthenticationException.php -------------------------------------------------------------------------------- /src/Exceptions/AuthorizationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Exceptions/AuthorizationException.php -------------------------------------------------------------------------------- /src/Facades/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Facades/Auth.php -------------------------------------------------------------------------------- /src/Facades/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Facades/Gate.php -------------------------------------------------------------------------------- /src/Facades/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Facades/Hash.php -------------------------------------------------------------------------------- /src/Facades/Passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Facades/Passwords.php -------------------------------------------------------------------------------- /src/Facades/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Facades/RateLimiter.php -------------------------------------------------------------------------------- /src/Filters/AuthenticationBasicFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/AuthenticationBasicFilter.php -------------------------------------------------------------------------------- /src/Filters/AuthenticationFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/AuthenticationFilter.php -------------------------------------------------------------------------------- /src/Filters/AuthorizeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/AuthorizeFilter.php -------------------------------------------------------------------------------- /src/Filters/ConfirmPasswordFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/ConfirmPasswordFilter.php -------------------------------------------------------------------------------- /src/Filters/EmailVerifiedFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/EmailVerifiedFilter.php -------------------------------------------------------------------------------- /src/Filters/RedirectAuthenticatedFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/RedirectAuthenticatedFilter.php -------------------------------------------------------------------------------- /src/Filters/ThrottleFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Filters/ThrottleFilter.php -------------------------------------------------------------------------------- /src/Helpers/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Helpers/Arr.php -------------------------------------------------------------------------------- /src/Helpers/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Helpers/Str.php -------------------------------------------------------------------------------- /src/Helpers/auth_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Helpers/auth_helper.php -------------------------------------------------------------------------------- /src/Language/en/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Language/en/Auth.php -------------------------------------------------------------------------------- /src/Language/en/Passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Language/en/Passwords.php -------------------------------------------------------------------------------- /src/Models/AccessTokenModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Models/AccessTokenModel.php -------------------------------------------------------------------------------- /src/Models/UserModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Models/UserModel.php -------------------------------------------------------------------------------- /src/Notifications/ResetPasswordNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Notifications/ResetPasswordNotification.php -------------------------------------------------------------------------------- /src/Notifications/VerificationNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Notifications/VerificationNotification.php -------------------------------------------------------------------------------- /src/Passwords/Hash/AbstractHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/AbstractHasher.php -------------------------------------------------------------------------------- /src/Passwords/Hash/AbstractManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/AbstractManager.php -------------------------------------------------------------------------------- /src/Passwords/Hash/Argon2IdHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/Argon2IdHasher.php -------------------------------------------------------------------------------- /src/Passwords/Hash/ArgonHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/ArgonHasher.php -------------------------------------------------------------------------------- /src/Passwords/Hash/BcryptHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/BcryptHasher.php -------------------------------------------------------------------------------- /src/Passwords/Hash/HashManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/Hash/HashManager.php -------------------------------------------------------------------------------- /src/Passwords/PasswordBroker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/PasswordBroker.php -------------------------------------------------------------------------------- /src/Passwords/PasswordBrokerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/PasswordBrokerManager.php -------------------------------------------------------------------------------- /src/Passwords/PasswordResetRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/PasswordResetRepository.php -------------------------------------------------------------------------------- /src/Passwords/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Passwords/RateLimiter.php -------------------------------------------------------------------------------- /src/Traits/AuthenticatableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/AuthenticatableTrait.php -------------------------------------------------------------------------------- /src/Traits/AuthorizableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/AuthorizableTrait.php -------------------------------------------------------------------------------- /src/Traits/AuthorizesRequestsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/AuthorizesRequestsTrait.php -------------------------------------------------------------------------------- /src/Traits/CanResetPasswordTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/CanResetPasswordTrait.php -------------------------------------------------------------------------------- /src/Traits/GuardHelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/GuardHelperTrait.php -------------------------------------------------------------------------------- /src/Traits/HasAccessTokensTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/HasAccessTokensTrait.php -------------------------------------------------------------------------------- /src/Traits/InteractsWithAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/InteractsWithAuthentication.php -------------------------------------------------------------------------------- /src/Traits/InteractsWithTimeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/InteractsWithTimeTrait.php -------------------------------------------------------------------------------- /src/Traits/MustVerifyEmailTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/MustVerifyEmailTrait.php -------------------------------------------------------------------------------- /src/Traits/UserProviderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Traits/UserProviderTrait.php -------------------------------------------------------------------------------- /src/UserDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/UserDatabase.php -------------------------------------------------------------------------------- /src/Views/Auth/confirm_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/confirm_password.php -------------------------------------------------------------------------------- /src/Views/Auth/forgot_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/forgot_password.php -------------------------------------------------------------------------------- /src/Views/Auth/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/layout.php -------------------------------------------------------------------------------- /src/Views/Auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/login.php -------------------------------------------------------------------------------- /src/Views/Auth/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/messages.php -------------------------------------------------------------------------------- /src/Views/Auth/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/register.php -------------------------------------------------------------------------------- /src/Views/Auth/reset_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/reset_password.php -------------------------------------------------------------------------------- /src/Views/Auth/verify_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Auth/verify_email.php -------------------------------------------------------------------------------- /src/Views/Email/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Email/layout.php -------------------------------------------------------------------------------- /src/Views/Email/reset_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Email/reset_email.php -------------------------------------------------------------------------------- /src/Views/Email/verify_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/Email/verify_email.php -------------------------------------------------------------------------------- /src/Views/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/dashboard.php -------------------------------------------------------------------------------- /src/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agungsugiarto/codeigniter4-authentication/HEAD/src/Views/welcome_message.php --------------------------------------------------------------------------------