Roman_applicant-site/resources/views/layouts/guest.blade.php

31 lines
1.3 KiB
PHP
Raw Normal View History

2024-01-10 14:00:03 +03:00
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
2024-01-12 12:33:51 +03:00
<body class="font-sans text-gray-900 antialiased" >
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900" style="background-color:#006147">
<div class="d-flex justify-content-center align-items-center text-center">
2024-01-10 14:00:03 +03:00
<a href="/">
2024-01-12 12:33:51 +03:00
<img src="{{ URL::to('svg/img/schit.svg') }}" style="max-width: 60%; display: unset " alt="" />
2024-01-10 14:00:03 +03:00
</a>
</div>
2024-01-12 12:33:51 +03:00
<div class="w-full sm:max-w-md mt-6 px-6 py-4 shadow-md overflow-hidden sm:rounded-lg" style="background-color: whitesmoke">
2024-01-10 14:00:03 +03:00
{{ $slot }}
</div>
</div>
</body>
</html>