|
|
@ -5,12 +5,12 @@ |
|
|
</a> |
|
|
</a> |
|
|
|
|
|
|
|
|
<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9"> |
|
|
<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9"> |
|
|
Sign in to your account |
|
|
|
|
|
|
|
|
{{ __('auth.login') }} |
|
|
</h2> |
|
|
</h2> |
|
|
<p class="mt-2 text-sm text-center text-gray-600 leading-5 max-w"> |
|
|
<p class="mt-2 text-sm text-center text-gray-600 leading-5 max-w"> |
|
|
Or |
|
|
|
|
|
<a href="{{ route('register') }}" class="font-medium text-green-600 hover:text-green-500 focus:outline-none focus:underline transition ease-in-out duration-150"> |
|
|
|
|
|
create a new account |
|
|
|
|
|
|
|
|
Ou |
|
|
|
|
|
<a href="{{ route('register') }}" class="font-medium text-green-600 hover:text-green-500 lowercase focus:outline-none focus:underline transition ease-in-out duration-150"> |
|
|
|
|
|
{{ __('auth.register') }} |
|
|
</a> |
|
|
</a> |
|
|
</p> |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
@ -20,7 +20,7 @@ |
|
|
<form wire:submit.prevent="authenticate"> |
|
|
<form wire:submit.prevent="authenticate"> |
|
|
<div> |
|
|
<div> |
|
|
<label for="email" class="block text-sm font-medium text-gray-700 leading-5"> |
|
|
<label for="email" class="block text-sm font-medium text-gray-700 leading-5"> |
|
|
Email address |
|
|
|
|
|
|
|
|
{{ __('users.attributes.email') }} |
|
|
</label> |
|
|
</label> |
|
|
|
|
|
|
|
|
<div class="mt-1 rounded-md shadow-sm"> |
|
|
<div class="mt-1 rounded-md shadow-sm"> |
|
|
@ -34,7 +34,7 @@ |
|
|
|
|
|
|
|
|
<div class="mt-6"> |
|
|
<div class="mt-6"> |
|
|
<label for="password" class="block text-sm font-medium text-gray-700 leading-5"> |
|
|
<label for="password" class="block text-sm font-medium text-gray-700 leading-5"> |
|
|
Password |
|
|
|
|
|
|
|
|
{{ __('users.attributes.password') }} |
|
|
</label> |
|
|
</label> |
|
|
|
|
|
|
|
|
<div class="mt-1 rounded-md shadow-sm"> |
|
|
<div class="mt-1 rounded-md shadow-sm"> |
|
|
@ -50,13 +50,13 @@ |
|
|
<div class="flex items-center"> |
|
|
<div class="flex items-center"> |
|
|
<input wire:model.lazy="remember" id="remember" type="checkbox" class="form-checkbox w-4 h-4 text-green-600 transition duration-150 ease-in-out" /> |
|
|
<input wire:model.lazy="remember" id="remember" type="checkbox" class="form-checkbox w-4 h-4 text-green-600 transition duration-150 ease-in-out" /> |
|
|
<label for="remember" class="block ml-2 text-sm text-gray-900 leading-5"> |
|
|
<label for="remember" class="block ml-2 text-sm text-gray-900 leading-5"> |
|
|
Remember |
|
|
|
|
|
|
|
|
{{ __('auth.remember') }} |
|
|
</label> |
|
|
</label> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="text-sm leading-5"> |
|
|
<div class="text-sm leading-5"> |
|
|
<a href="{{ route('password.request') }}" class="font-medium text-green-600 hover:text-green-500 focus:outline-none focus:underline transition ease-in-out duration-150"> |
|
|
<a href="{{ route('password.request') }}" class="font-medium text-green-600 hover:text-green-500 focus:outline-none focus:underline transition ease-in-out duration-150"> |
|
|
Forgot your password? |
|
|
|
|
|
|
|
|
{{ __('auth.forgot-password') }} |
|
|
</a> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
@ -64,7 +64,7 @@ |
|
|
<div class="mt-6"> |
|
|
<div class="mt-6"> |
|
|
<span class="block w-full rounded-md shadow-sm"> |
|
|
<span class="block w-full rounded-md shadow-sm"> |
|
|
<button type="submit" class="flex justify-center w-full px-4 py-2 text-sm font-medium text-white bg-green-600 border border-transparent rounded-md hover:bg-green-500 focus:outline-none focus:border-green-700 focus:shadow-outline-green active:bg-green-700 transition duration-150 ease-in-out"> |
|
|
<button type="submit" class="flex justify-center w-full px-4 py-2 text-sm font-medium text-white bg-green-600 border border-transparent rounded-md hover:bg-green-500 focus:outline-none focus:border-green-700 focus:shadow-outline-green active:bg-green-700 transition duration-150 ease-in-out"> |
|
|
Sign in |
|
|
|
|
|
|
|
|
{{ __('auth.sign-in') }} |
|
|
</button> |
|
|
</button> |
|
|
</span> |
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
|