From a76ce0903a59ddce5002d7e4689130fde95d905e Mon Sep 17 00:00:00 2001 From: Elvis Yerel Roman Date: Wed, 14 Aug 2024 21:48:59 -0500 Subject: [PATCH] Updated views --- resources/scss/pages.scss | 49 +++++++- .../views/auth/forgot-password.blade.php | 45 ++++---- resources/views/auth/login.blade.php | 105 +++++++++++------- resources/views/auth/reset-password.blade.php | 69 ++++++------ resources/views/auth/terms.blade.php | 2 +- resources/views/client/register.blade.php | 18 +-- resources/views/factor/email.blade.php | 96 ++++++++-------- resources/views/layouts/app.blade.php | 17 --- resources/views/layouts/footer.blade.php | 22 ---- resources/views/layouts/pages.blade.php | 2 + 10 files changed, 228 insertions(+), 197 deletions(-) delete mode 100644 resources/views/layouts/footer.blade.php diff --git a/resources/scss/pages.scss b/resources/scss/pages.scss index fadb312f..beb29ab2 100644 --- a/resources/scss/pages.scss +++ b/resources/scss/pages.scss @@ -182,13 +182,56 @@ body { &:last-child { display: flex; - background-color: var(--primary); + background: var(--primary); justify-content: center; align-items: center; .page { - padding: 0.5em; - text-align: center; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + min-height: inherit; + + div { + text-align: center; + + h1 { + font-size: 5em; + color: var(--white); + // animation: slide 5s linear infinite; + } + + p { + font-size: large; + color: var(--first-color); + font-size: 2em; + } + + + @keyframes slide { + 0% { + color: var(--white); + } + + 25% { + color: var(--secondary); + } + + 50% { + color: var(--ternary); + } + + + 75% { + color: var(--quaternary); + } + + 100% { + color: var(--code); + } + } + } } } diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php index 7525bcce..8c560a5a 100755 --- a/resources/views/auth/forgot-password.blade.php +++ b/resources/views/auth/forgot-password.blade.php @@ -1,32 +1,33 @@ @extends('layouts.pages') @section('content') -
-
-

{{ __('Request to change password') }}

-

- {{ __('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.') }} -

-
-
-
- @csrf -
+
+
+
+

{{ __('Request to change password') }}

+

+ {{ __('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.') }} +

+
+
+ + @csrf +
- - @if ($errors->has('email')) - @foreach ($errors->get('email') as $item) - {{ $item }} - @endforeach - @endif -
+ + @if ($errors->has('email')) + @foreach ($errors->get('email') as $item) + {{ $item }} + @endforeach + @endif +
-
+
- + -
+
+
- @endsection diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 5806fa51..9fb4cc12 100755 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -2,60 +2,81 @@ @section('content') @if (session('status')) -
+

{{ session('status') }}

@endif -