add home and handle 404 page not found
This commit is contained in:
@@ -14,11 +14,11 @@ class="authentication-bg"
|
||||
<div class="card-body p-5">
|
||||
<div class="text-center">
|
||||
<div class="mx-auto mb-4 text-center auth-logo">
|
||||
<a href="{{ route('any', 'index') }}" class="logo-dark">
|
||||
<a href="{{ route('home') }}" class="logo-dark">
|
||||
<img src="/images/logo-dark.png" height="32" alt="logo dark">
|
||||
</a>
|
||||
|
||||
<a href="{{ route('any', 'index') }}" class="logo-light">
|
||||
<a href="{{ route('home') }}" class="logo-light">
|
||||
<img src="/images/logo-light.png" height="28" alt="logo light">
|
||||
</a>
|
||||
</div>
|
||||
@@ -26,7 +26,7 @@ class="authentication-bg"
|
||||
<p class="text-muted">Enter your email address and we'll send you an email
|
||||
with instructions to reset your password.</p>
|
||||
</div>
|
||||
<form action="{{ route('any', 'index') }}" class="mt-4">
|
||||
<form action="{{ route('home') }}" class="mt-4">
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">Email Address</label>
|
||||
<input type="email" class="form-control" id="email"
|
||||
@@ -40,7 +40,7 @@ class="authentication-bg"
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-center mt-4 text-white text-opacity-50">Back to
|
||||
<a href="{{ route ('second' , ['auth','signin']) }}" class="text-decoration-none text-white fw-bold">Sign In</a>
|
||||
<a href="{{ route ('login') }}" class="text-decoration-none text-white fw-bold">Sign In</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user