Update login interface
This commit is contained in:
@@ -12,26 +12,32 @@
|
|||||||
<!-- Validation Errors -->
|
<!-- Validation Errors -->
|
||||||
<x-auth-validation-errors class="mb-4" :errors="$errors" />
|
<x-auth-validation-errors class="mb-4" :errors="$errors" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container-fluid">
|
||||||
<form method="POST" action="{{ route('login') }}">
|
<form method="POST" action="{{ route('login') }}">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
<!-- Email Address -->
|
<!-- Email Address -->
|
||||||
<div>
|
<div class="form-floating">
|
||||||
<x-label for="email" :value="__('Email')" />
|
<!--<x-label for="email" :value="__('Email')" />-->
|
||||||
|
|
||||||
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
|
<input id="email" class="form-control" type="email" name="email" placeholder="Email" :value="old('email')" required autofocus>
|
||||||
|
<label for="email">Email address</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Password -->
|
<!-- Password -->
|
||||||
<div class="mt-4">
|
<div class="form-floating">
|
||||||
<x-label for="password" :value="__('Password')" />
|
|
||||||
|
|
||||||
<x-input id="password" class="block mt-1 w-full"
|
<x-input id="password" class="form-control"
|
||||||
type="password"
|
type="password"
|
||||||
name="password"
|
name="password"
|
||||||
|
placeholder="Password"
|
||||||
required autocomplete="current-password" />
|
required autocomplete="current-password" />
|
||||||
|
<label for="password" :value="__('Password')" />Password</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Remember Me -->
|
<!-- Remember Me -->
|
||||||
<div class="block mt-4">
|
<div class="block mt-4">
|
||||||
<label for="remember_me" class="inline-flex items-center">
|
<label for="remember_me" class="inline-flex items-center">
|
||||||
@@ -47,11 +53,12 @@
|
|||||||
</a>
|
</a>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<x-button class="ml-3">
|
<x-button class="w-100 btn btn-lg btn-primary">
|
||||||
{{ __('Log in') }}
|
{{ __('Log in') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
<main class="form-signin">
|
<main class="form-signin">
|
||||||
|
|
||||||
</x-auth-card>
|
</x-auth-card>
|
||||||
|
Reference in New Issue
Block a user