Files
online.tbbank.gov.tm-larave…/resources/views/vendor/nova/partials/auth-layout.blade.php
Resul Madesenow c277b33675 new auth ui design
2024-02-22 18:35:43 +05:00

95 lines
3.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">
<link rel="stylesheet" href="/assets/css/auth.css">
</head>
<body>
<div class="">
<div class="bg-white flex justify-between px-4 py-1 absolute w-full">
<div class="px-8 text-white text-sm p-1 rounded uppercase font-bold">
{{-- bg-green-500 --}}
{{-- <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-42-34</a>
<a href="#" class="mr-6 text-sm text-gray-900 uppercase">{{ __('Help') }}</a>
<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 }}
@unless($loop->last)
|
@endif
</a>
@endforeach
</div>
</div>
</div>
@yield('content')
<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>
<script src="/assets/js/inputmask.min.js"></script>
<script src="/assets/js/sweetalert2@11.js"></script>
<script src="/assets/js/fn.js"></script>
<script>
new Inputmask("+(\\9\\93)-99-99-99-99").mask(document.getElementById('phone'));
async function resetPassword(event) {
const response = await postData(event.target.action, getFormData(event))
if (response.errors) {
loopObject(response.errors, item => addValidationClasses(item))
} else {
removeValidationClasess()
if (response.step === 1) {
showVerificationCodeBox()
Swal.fire({
title: '{{ __('Verification code') }}',
text: response.message,
icon: 'info'
})
}
if (response.step === 2) {
showPasswordBox()
Swal.fire({
title: '{{ __('Reset Password') }}',
text: response.message,
icon: 'warning'
})
}
if (response.step === 3) {
await Swal.fire({
title: response.message,
showDenyButton: false,
showCancelButton: false,
})
window.location.href = '{{ route('login') }}'
}
}
}
</script>
</body>
</html>