From 3788c20559e577e0ae45e618098f272b5495c4e9 Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 15 Mar 2024 11:28:59 +0100 Subject: [PATCH 1/3] Fix determiner on password confirmation page --- src/features/password-confirmation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/password-confirmation.md b/src/features/password-confirmation.md index e67816c..1315a45 100644 --- a/src/features/password-confirmation.md +++ b/src/features/password-confirmation.md @@ -46,7 +46,7 @@ Route::post('/billing', function () { })->middleware(['password.confirm']); ``` -That view that renders the Livewire stack's password confirmation screen is located at `resources/views/auth/confirm-password.blade.php`. Generally, this view should not need customization; however, you are free to make general presentational tweaks to this page based on your own application's design. +The view that renders the Livewire stack's password confirmation screen is located at `resources/views/auth/confirm-password.blade.php`. Generally, this view should not need customization; however, you are free to make general presentational tweaks to this page based on your own application's design. #### Ensuring Password Confirmation From e16f1cdb2a780f304efb93fc39a6372cd8009399 Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 15 Mar 2024 11:32:06 +0100 Subject: [PATCH 2/3] Fix colon for period --- src/features/password-confirmation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/password-confirmation.md b/src/features/password-confirmation.md index 1315a45..4c508db 100644 --- a/src/features/password-confirmation.md +++ b/src/features/password-confirmation.md @@ -91,7 +91,7 @@ That page that renders the Inertia's stack's password confirmation screen is loc :::warning Password Confirmation Expiration -Once the user has confirmed their password, they will not be required to re-enter their password until the number of seconds defined by your application's `auth.password_timeout` configuration option has elapsed: +Once the user has confirmed their password, they will not be required to re-enter their password until the number of seconds defined by your application's `auth.password_timeout` configuration option has elapsed. ::: ## Modal Password Confirmation From 4a7edd633ad47e8376f55ce7fd260ebb0c30f18e Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 15 Mar 2024 11:34:53 +0100 Subject: [PATCH 3/3] Fix determiner and colon --- src/features/password-confirmation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/password-confirmation.md b/src/features/password-confirmation.md index 4c508db..dc8ccf5 100644 --- a/src/features/password-confirmation.md +++ b/src/features/password-confirmation.md @@ -87,7 +87,7 @@ Route::post('/billing', function () { })->middleware(['password.confirm']); ``` -That page that renders the Inertia's stack's password confirmation screen is located at `resources/js/Pages/Auth/ConfirmPassword.vue`. Generally, this page should not need customization; however, you are free to make general presentational tweaks to this page based on your own application's design. +The page that renders the Inertia's stack's password confirmation screen is located at `resources/js/Pages/Auth/ConfirmPassword.vue`. Generally, this page should not need customization; however, you are free to make general presentational tweaks to this page based on your own application's design. :::warning Password Confirmation Expiration @@ -138,7 +138,7 @@ public function enableAdminMode(): void :::warning Password Confirmation Expiration -Once the user has confirmed their password, they will not be required to re-enter their password until the number of seconds defined by your application's `auth.password_timeout` configuration option has elapsed: +Once the user has confirmed their password, they will not be required to re-enter their password until the number of seconds defined by your application's `auth.password_timeout` configuration option has elapsed. ::: ### Modal Password Confirmation via Inertia