From bcd3d9a433865bfcc6951eb12908fa8702765237 Mon Sep 17 00:00:00 2001 From: Tony Lea Date: Sun, 2 Jun 2024 12:02:00 -0400 Subject: [PATCH 1/3] fixing a few things to keep accessibility greater than 90% --- resources/views/components/elements/logo.blade.php | 4 ++-- resources/views/pages/auth/register.blade.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/components/elements/logo.blade.php b/resources/views/components/elements/logo.blade.php index 8e911d3..d8577c2 100644 --- a/resources/views/components/elements/logo.blade.php +++ b/resources/views/components/elements/logo.blade.php @@ -1,6 +1,6 @@ - + @if($isImage) - + @else {!! str_replace(' + @endif @if($showPasswordField) From 721f0a9c1e3987c6ec942dd921e03acde2f8bc9e Mon Sep 17 00:00:00 2001 From: tnylea Date: Sun, 2 Jun 2024 16:02:22 +0000 Subject: [PATCH 2/3] Fixes coding style --- config/devdojo/auth/descriptions.php | 2 +- config/devdojo/auth/language.php | 8 ++++---- config/devdojo/auth/settings.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/devdojo/auth/descriptions.php b/config/devdojo/auth/descriptions.php index fc0fc8b..0022926 100644 --- a/config/devdojo/auth/descriptions.php +++ b/config/devdojo/auth/descriptions.php @@ -13,6 +13,6 @@ 'dev_mode' => 'This is for development mode, when set in Dev Mode Assets will be loaded from Vite', 'enable_2fa' => 'Enable the ability for users to turn on Two Factor Authentication', 'login_show_social_providers' => 'Show the social providers login buttons on the login form', - 'social_providers_location' => 'The location of the social provider buttons (top or bottom)' + 'social_providers_location' => 'The location of the social provider buttons (top or bottom)', ], ]; diff --git a/config/devdojo/auth/language.php b/config/devdojo/auth/language.php index 9189348..4d225c4 100644 --- a/config/devdojo/auth/language.php +++ b/config/devdojo/auth/language.php @@ -26,19 +26,19 @@ 'page_title' => 'Confirm Your Password', 'headline' => 'Confirm Password', 'subheadline' => 'Be sure to confirm your password below', - 'show_subheadline' => false + 'show_subheadline' => false, ], 'passwordResetRequest' => [ 'page_title' => 'Request a Password Reset', 'headline' => 'Reset password', 'subheadline' => 'Enter your email below to reset your password', - 'show_subheadline' => false + 'show_subheadline' => false, ], 'passwordReset' => [ 'page_title' => 'Reset Your Password', 'headline' => 'Reset Password', 'subheadline' => 'Reset your password below', - 'show_subheadline' => false + 'show_subheadline' => false, ], 'twoFactorChallenge' => [ 'page_title' => 'Two Factor Challenge', @@ -49,5 +49,5 @@ 'subheadline_recovery' => 'Please confirm access to your account by entering one of your emergency recovery codes.', 'show_subheadline_recovery' => false, ], - + ]; diff --git a/config/devdojo/auth/settings.php b/config/devdojo/auth/settings.php index f96d452..6838df8 100644 --- a/config/devdojo/auth/settings.php +++ b/config/devdojo/auth/settings.php @@ -12,5 +12,5 @@ 'dev_mode' => false, 'enable_2fa' => false, // Enable or disable 2FA functionality globally 'login_show_social_providers' => true, - 'social_providers_location' => 'bottom' + 'social_providers_location' => 'bottom', ]; From d76cf2aef90691df442c09e7c6bde077586b9851 Mon Sep 17 00:00:00 2001 From: Tony Lea Date: Sun, 2 Jun 2024 12:37:29 -0400 Subject: [PATCH 3/3] Making changes to readme --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0f6cedb..9afa8de 100644 --- a/README.md +++ b/README.md @@ -9,17 +9,11 @@ ## About Auth -The DevDojo Auth package is a plug'n play Authentication wrapper for your Laravel application. Easily update and modify your authentication pages, add social providers, and many other auth features. +The DevDojo Auth package is a plug'n play Authentication package for your Laravel application. Easily update and modify your authentication pages, add social providers, and many other auth features. -- [Simple, fast routing engine](https://laravel.com/docs/routing). -- [Powerful dependency injection container](https://laravel.com/docs/container). -- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. -- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). -- Database agnostic [schema migrations](https://laravel.com/docs/migrations). -- [Robust background job processing](https://laravel.com/docs/queues). -- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). + -Laravel is accessible, powerful, and provides tools required for large, robust applications. +Be sure to visit the official documentation at [https://devdojo.com/auth/docs](https://devdojo.com/auth/docs) ## Installation