91 lines
5.2 KiB
PHP
91 lines
5.2 KiB
PHP
|
|
<!DOCTYPE html>
|
|
<html lang="tk" dir="ltr" class="h-full font-sans antialiased">
|
|
<head>
|
|
<meta name="theme-color" content="#fff">
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<meta name="locale" content="tk"/>
|
|
<meta name="robots" content="noindex">
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="/vendor/nova/app.css?id=496e3383c5e2918c7bc875f45870e701">
|
|
<style type="text/css">
|
|
.bg-img {
|
|
background: url({{ asset('assets/images/login-bg.jpg')}}) no-repeat fixed var(--sc-login-bg-position, 50% 50%);
|
|
background-size: cover;
|
|
}
|
|
.login-section {
|
|
padding: 0px 150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="bg-img">
|
|
<div class="bg-white flex justify-between px-4 py-1 absolute w-full">
|
|
<div class="bg-green-500 px-8 text-white text-sm p-1 rounded uppercase font-bold"><a href="#"> Töleg barlagy </a></div>
|
|
<div class="flex items-center">
|
|
<a href="tel:+99312444115" class="mr-6 text-sm text-gray-900">(+99312) 44-41-15</a>
|
|
<a href="#" class="mr-6 text-sm text-gray-900 uppercase">Kömek</a>
|
|
<div class="flex text-sm text-gray-900 space-x-1 uppercase">
|
|
<a href="#" class="font-bold"> Tm |</a>
|
|
<a href="#"> En |</a>
|
|
<a href="#"> Ru</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="login-section flex justify-between items-center h-screen">
|
|
<div>
|
|
<img src="{{ asset('assets/images/logo-login.png')}}" width="85%">
|
|
</div>
|
|
<div>
|
|
<form class="bg-white dark:bg-gray-800 shadow 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">
|
|
{{ __('Username') }}
|
|
</label>
|
|
<input class="form-control form-input form-input-bordered w-full @error('username') form-input-border-error @enderror" id="username" type="text" name="username" autofocus="" value="{{ old('username') }}">
|
|
|
|
@error('username')
|
|
<span class="text-red-500 text-italic">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
<div class="mb-6">
|
|
<label class="block mb-2" for="password">
|
|
{{ __('Password') }}
|
|
</label>
|
|
<input class="form-control form-input form-input-bordered w-full @error('username') form-input-border-error @enderror" id="password" type="password" name="password">
|
|
|
|
@error('password')
|
|
<span class="text-red-500 text-italic">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
<div class="flex mb-6">
|
|
<div class="ml-auto">
|
|
<a href="{{ route('reset-password') }}" class="text-gray-500 font-bold no-underline">
|
|
{{ __('Forgot your password?') }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<button class="w-full flex justify-center shadow relative bg-primary-500 hover:bg-primary-400 text-white dark:text-gray-900 w-full flex justify-center cursor-pointer rounded text-sm font-bold focus:outline-none focus:ring ring-primary-200 dark:ring-gray-600 inline-flex items-center justify-center h-9 px-3 mb-3 w-full flex justify-center shadow relative bg-primary-500 hover:bg-primary-400 text-white dark:text-gray-900 w-full flex justify-center" type="submit">
|
|
<span class=""><span>{{ __('Login') }}</span></span>
|
|
</button>
|
|
<a href="{{ route('register') }}" class="w-full flex justify-center shadow relative bg-primary-500 hover:bg-primary-400 text-white dark:text-gray-900 w-full flex justify-center cursor-pointer rounded text-sm font-bold focus:outline-none focus:ring ring-primary-200 dark:ring-gray-600 inline-flex items-center justify-center h-9 px-3 mb-3 w-full flex justify-center shadow relative bg-primary-500 hover:bg-primary-400 text-white dark:text-gray-900 w-full flex justify-center">
|
|
<span class=""><span>{{ __('Register') }}</span></span>
|
|
</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="bg-white flex justify-between p-1 px-3 text-sm fixed bottom-0 left-0 right-0">
|
|
<p>“Turkmenbasy” PTB-y ©</p>
|
|
<a href="#">SoftClub</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|