auth ui changed
This commit is contained in:
@@ -9,9 +9,10 @@
|
||||
}
|
||||
|
||||
.login-section {
|
||||
padding: 0px 120px 0px 5px;
|
||||
padding: 0px 120px 0px 0px;
|
||||
}
|
||||
|
||||
.object-cover {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,13 +3,13 @@
|
||||
@section('content')
|
||||
<div class="login-section flex justify-between items-center h-screen">
|
||||
<div class="h-full">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-2xl h-full object-cover">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-4xl h-full object-cover">
|
||||
</div>
|
||||
<div>
|
||||
<div class="logo">
|
||||
<img src="assets/images/logo-login.png" width="150px">
|
||||
<img src="assets/images/logo-login.png" width="100px">
|
||||
</div>
|
||||
<form class="bg-white dark:bg-gray-800 shadow rounded-lg p-8 w-[25rem] mx-auto" method="POST" action="{{ route('login') }}">
|
||||
<form class="bg-white dark:bg-gray-800 rounded-lg p-8 w-[25rem] mx-auto" method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
<div class="mb-6">
|
||||
<label class="block mb-2" for="username">
|
||||
|
||||
@@ -3,15 +3,16 @@
|
||||
@section('content')
|
||||
<div class="login-section flex justify-between items-center h-screen">
|
||||
<div class="h-full">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-2xl h-full object-cover">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-4xl h-full object-cover">
|
||||
</div>
|
||||
<div>
|
||||
{{-- <div class="logo">
|
||||
<img src="assets/images/logo-login.png" width="200px">
|
||||
</div> --}}
|
||||
<form class="bg-white dark:bg-gray-800 shadow rounded-lg p-8 w-[25rem] mx-auto" method="POST" action="{{ route('register') }}">
|
||||
<form class="bg-white dark:bg-gray-800 rounded-lg p-8 w-[25rem] mx-auto" method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
<h2 class="text-2xl text-center font-normal mb-6">{{ __('Welcome Back!') }}</h2>
|
||||
<h2 class="text-2xl text-center font-normal mb-6">{{ __('Online panel') }}</h2>
|
||||
{{-- <h2 class="text-xl text-center font-normal mb-6">{{ __('Welcome Back!') }}</h2> --}}
|
||||
<svg class="block mx-auto mb-6" xmlns="http://www.w3.org/2000/svg" width="100" height="2" viewBox="0 0 100 2">
|
||||
<path fill="#D8E3EC" d="M0 0h100v2H0z"></path>
|
||||
</svg>
|
||||
|
||||
@@ -3,22 +3,23 @@
|
||||
@section('content')
|
||||
<div class="login-section flex justify-between items-center h-screen">
|
||||
<div class="h-full">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-2xl h-full object-cover">
|
||||
<img src="/assets/images/login-bg.jpg" class="max-w-4xl h-full object-cover">
|
||||
</div>
|
||||
<div>
|
||||
<div class="logo">
|
||||
<img src="assets/images/logo-login.png" width="150px">
|
||||
{{-- <div class="mx-auto py-2 max-w-md flex justify-center">
|
||||
<span class="text-3xl text-center">{{ __('Forgot your password?') }}</span>
|
||||
</div> --}}
|
||||
<img src="assets/images/logo-login.png" width="100px">
|
||||
</div>
|
||||
<form
|
||||
method="POST"
|
||||
action="{{ route('reset-password') }}"
|
||||
onsubmit="event.preventDefault();resetPassword(event)"
|
||||
class="bg-white dark:bg-gray-800 shadow rounded-lg p-8 w-[25rem] mx-auto"
|
||||
class="bg-white dark:bg-gray-800 rounded-lg p-8 w-[25rem] mx-auto"
|
||||
>
|
||||
@csrf
|
||||
<div class="mx-auto py-2 max-w-md flex justify-center">
|
||||
<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">
|
||||
<path fill="#D8E3EC" d="M0 0h100v2H0z"></path>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div class="">
|
||||
<div class="bg-white flex justify-between px-4 py-1 absolute w-full">
|
||||
<div class="bg-white flex justify-between px-4 py-1 absolute w-full shadow-lg">
|
||||
<div class="px-8 text-white text-sm p-1 rounded uppercase font-bold">
|
||||
{{-- bg-green-500 --}}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
<div class="flex text-sm text-gray-900 space-x-1 uppercase">
|
||||
@foreach(config('app.locales') as $localeKey => $localeDisplayName)
|
||||
<a href="{{ route('locale.set', ['locale' => $localeKey]) }}" class="{{ session('locale') === $localeKey ? 'font-bold' : '' }}">
|
||||
{{ $localeDisplayName }}
|
||||
{{ $localeKey }}
|
||||
|
||||
@unless($loop->last)
|
||||
|
|
||||
|
||||
Reference in New Issue
Block a user