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