From efba3dff84d14c98875fd2b0d9809322ef95f36b Mon Sep 17 00:00:00 2001 From: Paul Couture Date: Fri, 15 Dec 2023 00:53:04 -0600 Subject: [PATCH] fix: fixing login and forgot password --- site/resources/scss/components/_auth.scss | 6 ++ .../views/auth/forgot-password.blade.php | 14 ++-- site/resources/views/auth/login.blade.php | 50 +++++------ site/resources/views/layouts/guest.blade.php | 84 +++++++++---------- .../views/partials/nav/head.blade.php | 2 +- 5 files changed, 78 insertions(+), 78 deletions(-) diff --git a/site/resources/scss/components/_auth.scss b/site/resources/scss/components/_auth.scss index 56dd5ea..c2b2bf6 100644 --- a/site/resources/scss/components/_auth.scss +++ b/site/resources/scss/components/_auth.scss @@ -8,3 +8,9 @@ background: $color-primary; } } +.theme-light { + .authbox { + background: $body-bg-light; + border-color: darken($body-bg-light, 10%); + } +} diff --git a/site/resources/views/auth/forgot-password.blade.php b/site/resources/views/auth/forgot-password.blade.php index 3c70788..67df741 100644 --- a/site/resources/views/auth/forgot-password.blade.php +++ b/site/resources/views/auth/forgot-password.blade.php @@ -2,23 +2,19 @@
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
- - + {{-- Session Status --}} -
@csrf - - + {{-- Email Address --}}
- -
- - {{ __('Email Password Reset Link') }} +
+ + {{ __('Email Password Reset Link') }}
diff --git a/site/resources/views/auth/login.blade.php b/site/resources/views/auth/login.blade.php index 7edaaba..1422fe4 100644 --- a/site/resources/views/auth/login.blade.php +++ b/site/resources/views/auth/login.blade.php @@ -1,51 +1,53 @@ - +
+
+ +
+
+ {{-- Session Status --}} -
@csrf - - + {{-- Email Address --}}
- - + {{-- Password --}}
- - + type="password" + name="password" + required autocomplete="current-password" />
- - -
-