new auth ui design

This commit is contained in:
Resul Madesenow
2024-02-22 18:35:43 +05:00
parent fb70c3758c
commit c277b33675
5 changed files with 31 additions and 15 deletions

View File

@@ -2,12 +2,13 @@
@section('content')
<div class="login-section flex justify-between items-center h-screen">
<div>
<img src="{{ asset('assets/images/logo-login.png')}}" width="400px">
<div class="h-full">
<img src="/assets/images/login-bg.jpg" class="max-w-2xl h-full object-cover">
</div>
<div>
<div>
<div>
<div class="logo">
<img src="assets/images/logo-login.png" width="150px">
</div>
<form
method="POST"
action="{{ route('reset-password') }}"
@@ -16,7 +17,7 @@
>
@csrf
<div class="mx-auto py-2 max-w-md flex justify-center">
<span class="text-4xl text-center">{{ __('Forgot your password?') }}</span>
<span class="text-3xl text-center">{{ __('Forgot your password?') }}</span>
</div>
<h2 class="text-2xl text-center font-normal mb-6">{{ __('Enter your username to continue') }}</h2>
<svg class="block mx-auto mb-6" xmlns="http://www.w3.org/2000/svg" width="100" height="2" viewBox="0 0 100 2">
@@ -66,7 +67,6 @@
<span class=""><span>{{ __('Go to login page') }}</span></span>
</a>
</form>
</div>
</div>
</div>
@stop