Update Authentication Page

This commit is contained in:
Daeng Deni Mardaeni 2024-08-09 15:01:44 +07:00
parent ea01665131
commit d7eeaf65ff
2 changed files with 0 additions and 52 deletions

View File

@ -11,14 +11,6 @@ use Modules\Authentication\Http\Requests\LoginRequest;
class AuthenticationController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('authentication::index');
}
/**
* Show the form for creating a new resource.
*/
@ -39,30 +31,6 @@ class AuthenticationController extends Controller
return redirect()->intended(('dashboard'));
}
/**
* Show the specified resource.
*/
public function show($id)
{
return view('authentication::show');
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
return view('authentication::edit');
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id): RedirectResponse
{
//
}
/**
* Remove the specified resource from storage.
*/

View File

@ -21,23 +21,6 @@
<h3 class="text-lg font-semibold text-gray-900 leading-none mb-2.5">
Sign in
</h3>
<div class="flex items-center justify-center font-medium">
<span class="text-2sm text-gray-600 me-1.5">
Need an account?
</span>
<a class="text-2sm link" href="">
Sign up
</a>
</div>
</div>
<div class="flex items-center gap-2">
<span class="border-t border-gray-200 w-full">
</span>
<span class="text-2xs text-gray-500 font-medium uppercase">
Or
</span>
<span class="border-t border-gray-200 w-full">
</span>
</div>
<div class="flex flex-col gap-1">
<label class="form-label text-gray-900">
@ -53,9 +36,6 @@
<label class="form-label text-gray-900">
Password
</label>
<a class="text-2sm link shrink-0" href="">
Forgot Password?
</a>
</div>
<label class="input" data-toggle-password="true">
<input class="@error('password') border-danger @enderror" name="password" placeholder="Enter Password" type="password" value=""/>